mirror of https://gitee.com/stylefeng/roses
【7.0.1】更新登录的角色校验提示,更新部分接口权限校验
parent
20284b73ec
commit
d30f2e8ec4
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-auth</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -22,14 +22,14 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--参数校验的api-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -67,7 +67,12 @@ public enum AuthExceptionEnum implements AbstractExceptionEnum {
|
|||
/**
|
||||
* 权限校验失败,只有超级管理员可以授权所有数据
|
||||
*/
|
||||
ONLY_SUPER_ERROR(RuleConstants.BUSINESS_ERROR_TYPE_CODE + AuthConstants.AUTH_EXCEPTION_STEP_CODE + "11", "权限校验失败,只有超级管理员可以授权所有数据");
|
||||
ONLY_SUPER_ERROR(RuleConstants.BUSINESS_ERROR_TYPE_CODE + AuthConstants.AUTH_EXCEPTION_STEP_CODE + "11", "权限校验失败,只有超级管理员可以授权所有数据"),
|
||||
|
||||
/**
|
||||
* 用户角色未绑定,登录失败
|
||||
*/
|
||||
ROLE_IS_EMPTY(RuleConstants.BUSINESS_ERROR_TYPE_CODE + AuthConstants.AUTH_EXCEPTION_STEP_CODE + "12", "用户角色未绑定,登录失败");
|
||||
|
||||
/**
|
||||
* 错误编码
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-auth</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源模块的api-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--system业务模块的api-->
|
||||
|
@ -37,7 +37,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>system-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--jwt模块的api-->
|
||||
|
@ -45,7 +45,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>jwt-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
@ -64,18 +64,18 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-sdk-memory</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-sdk-redis</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
|
@ -84,7 +84,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>message-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-auth</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,21 +21,21 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-sdk</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--默认使用内存-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-sdk-memory</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--jwt的sdk-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>jwt-sdk</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-cache</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-cache</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-cache</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- redis,使用jedis客户端排除lettuce -->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-cache</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-sdk-memory</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-cache</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-sdk-redis</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-config</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-config</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-sdk-db</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源api模块-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--参数校验模块-->
|
||||
|
@ -37,7 +37,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库sdk-->
|
||||
|
@ -45,7 +45,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-config</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-config</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-business</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-db</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -43,7 +43,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-db</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库版本管理-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-db</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--auth鉴权模块的api-->
|
||||
|
@ -29,8 +29,8 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-db</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--auth鉴权模块的api-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-db</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,21 +21,21 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库初始化模块-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-init</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--flyway数据同步-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-flyway</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-ds-container</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-ds-container</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>ds-container-sdk</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源api模块-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库sdk-->
|
||||
|
@ -37,7 +37,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-ds-container</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>ds-container-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库操作模块的api-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- aop -->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-ds-container</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>ds-container-business</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-email</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-email</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>email-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--阿里云邮件发送的sdk-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-email</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>email-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--java邮件发送-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-email</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>email-sdk-java</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-file</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,14 +21,14 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--config模块的api-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--servlet-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-file</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>file-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源api模块-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--参数校验模块-->
|
||||
|
@ -37,7 +37,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库sdk-->
|
||||
|
@ -45,7 +45,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
|
|
@ -54,7 +54,7 @@ public class SysFileInfoController {
|
|||
* @author majianguo
|
||||
* @date 2020/12/27 13:17
|
||||
*/
|
||||
@PostResource(name = "上传文件", path = "/sysFileInfo/upload")
|
||||
@PostResource(name = "上传文件", path = "/sysFileInfo/upload", requiredPermission = false)
|
||||
public ResponseData upload(@RequestPart("file") MultipartFile file, @Validated(SysFileInfoRequest.add.class) SysFileInfoRequest sysFileInfoRequest) {
|
||||
SysFileInfoResponse fileUploadInfoResult = this.sysFileInfoService.uploadFile(file, sysFileInfoRequest);
|
||||
return new SuccessResponseData(fileUploadInfoResult);
|
||||
|
@ -69,7 +69,7 @@ public class SysFileInfoController {
|
|||
* @author liuhanqing
|
||||
* @date 2021/1/17 11:17
|
||||
*/
|
||||
@PostResource(name = "上传文件", path = "/sysFileInfo/tinymceUpload")
|
||||
@PostResource(name = "上传文件", path = "/sysFileInfo/tinymceUpload", requiredPermission = false)
|
||||
public Map<String, String> tinymceUpload(@RequestPart("file") MultipartFile file, SysFileInfoRequest sysFileInfoRequest) {
|
||||
Map<String, String> resultMap = new HashMap<>(1);
|
||||
sysFileInfoRequest.setSecretFlag(YesOrNotEnum.N.getCode());
|
||||
|
@ -84,7 +84,7 @@ public class SysFileInfoController {
|
|||
* @author fengshuonan
|
||||
* @date 2020/11/29 11:29
|
||||
*/
|
||||
@GetResource(name = "私有文件预览", path = FILE_PRIVATE_PREVIEW_URL)
|
||||
@GetResource(name = "私有文件预览", path = FILE_PRIVATE_PREVIEW_URL, requiredPermission = false)
|
||||
public void privatePreview(@Validated(SysFileInfoRequest.detail.class) SysFileInfoRequest sysFileInfoRequest) {
|
||||
HttpServletResponse response = HttpServletUtil.getResponse();
|
||||
sysFileInfoRequest.setSecretFlag(YesOrNotEnum.Y.getCode());
|
||||
|
@ -122,7 +122,7 @@ public class SysFileInfoController {
|
|||
* @author majianguo
|
||||
* @date 2020/12/27 13:17
|
||||
*/
|
||||
@GetResource(name = "私有文件下载", path = "/sysFileInfo/privateDownload")
|
||||
@GetResource(name = "私有文件下载", path = "/sysFileInfo/privateDownload", requiredPermission = false)
|
||||
public void privateDownload(@Validated(SysFileInfoRequest.detail.class) SysFileInfoRequest sysFileInfoRequest) {
|
||||
HttpServletResponse response = HttpServletUtil.getResponse();
|
||||
sysFileInfoRequest.setSecretFlag(YesOrNotEnum.Y.getCode());
|
||||
|
@ -150,7 +150,7 @@ public class SysFileInfoController {
|
|||
* @author majianguo
|
||||
* @date 2020/12/16 15:34
|
||||
*/
|
||||
@PostResource(name = "替换文件", path = "/sysFileInfo/update")
|
||||
@PostResource(name = "替换文件", path = "/sysFileInfo/update", requiredPermission = false)
|
||||
public ResponseData update(@RequestPart("file") MultipartFile file, @Validated(SysFileInfoRequest.edit.class) SysFileInfoRequest sysFileInfoRequest) {
|
||||
SysFileInfoResponse fileUploadInfoResult = this.sysFileInfoService.updateFile(file, sysFileInfoRequest);
|
||||
return new SuccessResponseData(fileUploadInfoResult);
|
||||
|
@ -162,7 +162,7 @@ public class SysFileInfoController {
|
|||
* @author majianguo
|
||||
* @date 2020/12/16 15:34
|
||||
*/
|
||||
@PostResource(name = "替换文件", path = "/sysFileInfo/versionBack")
|
||||
@PostResource(name = "替换文件", path = "/sysFileInfo/versionBack", requiredPermission = false)
|
||||
public ResponseData versionBack(@Validated(SysFileInfoRequest.versionBack.class) SysFileInfoRequest sysFileInfoRequest) {
|
||||
SysFileInfoResponse fileUploadInfoResult = this.sysFileInfoService.versionBack(sysFileInfoRequest);
|
||||
return new SuccessResponseData(fileUploadInfoResult);
|
||||
|
@ -176,7 +176,7 @@ public class SysFileInfoController {
|
|||
* @author majianguo
|
||||
* @date 2020/12/27 13:17
|
||||
*/
|
||||
@GetResource(name = "根据附件IDS查询附件信息", path = "/sysFileInfo/getFileInfoListByFileIds")
|
||||
@GetResource(name = "根据附件IDS查询附件信息", path = "/sysFileInfo/getFileInfoListByFileIds", requiredPermission = false)
|
||||
public ResponseData getFileInfoListByFileIds(@RequestParam(value = "fileIds") String fileIds) {
|
||||
List<SysFileInfoResponse> list = this.sysFileInfoService.getFileInfoListByFileIds(fileIds);
|
||||
return new SuccessResponseData(list);
|
||||
|
@ -200,7 +200,7 @@ public class SysFileInfoController {
|
|||
* @author majianguo
|
||||
* @date 2020/12/27 13:18
|
||||
*/
|
||||
@GetResource(name = "私有打包下载文件", path = "/sysFileInfo/privatePackagingDownload")
|
||||
@GetResource(name = "私有打包下载文件", path = "/sysFileInfo/privatePackagingDownload", requiredPermission = false)
|
||||
public void privatePackagingDownload(@RequestParam(value = "fileIds") String fileIds) {
|
||||
HttpServletResponse response = HttpServletUtil.getResponse();
|
||||
this.sysFileInfoService.packagingDownload(fileIds, YesOrNotEnum.Y.getCode(), response);
|
||||
|
@ -212,7 +212,7 @@ public class SysFileInfoController {
|
|||
* @author fengshuonan
|
||||
* @date 2020/11/29 11:19
|
||||
*/
|
||||
@PostResource(name = "删除文件信息(真删除文件信息)", path = "/sysFileInfo/deleteReally")
|
||||
@PostResource(name = "删除文件信息(真删除文件信息)", path = "/sysFileInfo/deleteReally", requiredPermission = false)
|
||||
public ResponseData deleteReally(@RequestBody @Validated(SysFileInfoRequest.delete.class) SysFileInfoRequest sysFileInfoRequest) {
|
||||
this.sysFileInfoService.deleteReally(sysFileInfoRequest);
|
||||
return new SuccessResponseData();
|
||||
|
@ -224,7 +224,7 @@ public class SysFileInfoController {
|
|||
* @author fengshuonan
|
||||
* @date 2020/11/29 11:29
|
||||
*/
|
||||
@GetResource(name = "分页查询文件信息表", path = "/sysFileInfo/fileInfoListPage")
|
||||
@GetResource(name = "分页查询文件信息表", path = "/sysFileInfo/fileInfoListPage", requiredPermission = false)
|
||||
public ResponseData fileInfoListPage(SysFileInfoRequest sysFileInfoRequest) {
|
||||
return new SuccessResponseData(this.sysFileInfoService.fileInfoListPage(sysFileInfoRequest));
|
||||
}
|
||||
|
@ -237,7 +237,7 @@ public class SysFileInfoController {
|
|||
* @author majianguo
|
||||
* @date 2020/12/27 13:18
|
||||
*/
|
||||
@PostResource(name = "确认替换附件", path = "/sysFileInfo/confirmReplaceFile")
|
||||
@PostResource(name = "确认替换附件", path = "/sysFileInfo/confirmReplaceFile", requiredPermission = false)
|
||||
public ResponseData confirmReplaceFile(@RequestBody List<Long> fileIdList) {
|
||||
this.sysFileInfoService.confirmReplaceFile(fileIdList);
|
||||
return new SuccessResponseData();
|
||||
|
@ -249,7 +249,7 @@ public class SysFileInfoController {
|
|||
* @author fengshuonan
|
||||
* @date 2020/11/29 11:29
|
||||
*/
|
||||
@GetResource(name = "查看详情文件信息表", path = "/sysFileInfo/detail")
|
||||
@GetResource(name = "查看详情文件信息表", path = "/sysFileInfo/detail", requiredPermission = false)
|
||||
public ResponseData detail(@Validated(SysFileInfoRequest.detail.class) SysFileInfoRequest sysFileInfoRequest) {
|
||||
return new SuccessResponseData(sysFileInfoService.detail(sysFileInfoRequest));
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-file</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>file-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--阿里云上传文件客户端-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-file</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>file-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--auth模块的api-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-file</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>file-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--auth模块的api-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--minio客户端-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-file</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>file-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--腾讯云上传文件客户端,用的时候手动引入-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-file</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,14 +21,14 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>file-business</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--文件sdk的实现,默认用本地存文件-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>file-sdk-local</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-groovy</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-groovy</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>groovy-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--groovy工具-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-groovy</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>groovy-sdk</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-i18n</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-i18n</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>i18n-sdk</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--字典的api-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>dict-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源api模块-->
|
||||
|
@ -37,7 +37,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--参数校验模块-->
|
||||
|
@ -45,7 +45,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库sdk-->
|
||||
|
@ -53,7 +53,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-i18n</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>i18n-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--auth鉴权模块的api-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-i18n</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>i18n-business</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-jwt</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--jwt token-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-jwt</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>jwt-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-jwt</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>jwt-sdk</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-log</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库模块 api-->
|
||||
|
@ -40,7 +40,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-log</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>log-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源api模块-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--参数校验模块-->
|
||||
|
@ -37,7 +37,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库sdk-->
|
||||
|
@ -45,14 +45,14 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--log-sdk-db-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>log-sdk-db</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-log</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>log-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源api模块-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- web -->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-log</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,14 +21,14 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>log-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库sdk-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-log</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>log-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--config模块的api-->
|
||||
|
@ -37,7 +37,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-log</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,26 +21,26 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>log-business-manage</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--接口请求日志记录-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>log-business-requestapi</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--日志默认记录到库中-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>log-sdk-db</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>log-sdk-file</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-office</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -27,4 +27,4 @@
|
|||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-office</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>office-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- servlet库 -->
|
||||
|
@ -36,4 +36,4 @@
|
|||
</dependencies>
|
||||
|
||||
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-office</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>office-sdk-excel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--EasyExcel-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-pinyin</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-pinyin</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>pinyin-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--拼音工具类-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-pinyin</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>pinyin-sdk-pinyin4j</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-scanner</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-scanner</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--spring-web-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-scanner</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-sdk-scanner</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-security</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-security</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>security-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-security</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>security-sdk-xss</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-sms</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>config-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-sms</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>system-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源api模块-->
|
||||
|
@ -29,14 +29,14 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--短信发送模块api-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>sms-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--参数校验模块-->
|
||||
|
@ -44,7 +44,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库sdk-->
|
||||
|
@ -52,7 +52,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
|
|
@ -34,8 +34,8 @@ public class SysSms extends BaseEntity implements Serializable {
|
|||
/**
|
||||
* 手机号
|
||||
*/
|
||||
@TableField("phone")
|
||||
private String phone;
|
||||
@TableField("phone_number")
|
||||
private String phoneNumber;
|
||||
|
||||
/**
|
||||
* 短信验证码
|
||||
|
|
|
@ -115,7 +115,7 @@ public class SysSmsInfoServiceImpl extends ServiceImpl<SysSmsMapper, SysSms> imp
|
|||
SysSms sysSms = new SysSms();
|
||||
sysSms.setCreateTime(nowDate);
|
||||
sysSms.setInvalidTime(invalidate);
|
||||
sysSms.setPhone(sysSmsSendParam.getPhone());
|
||||
sysSms.setPhoneNumber(sysSmsSendParam.getPhone());
|
||||
sysSms.setStatusFlag(SmsSendStatusEnum.WAITING.getCode());
|
||||
sysSms.setSource(sysSmsSendParam.getSmsSendSourceEnum().getCode());
|
||||
sysSms.setTemplateCode(sysSmsSendParam.getTemplateCode());
|
||||
|
@ -141,7 +141,7 @@ public class SysSmsInfoServiceImpl extends ServiceImpl<SysSmsMapper, SysSms> imp
|
|||
|
||||
// 查询有没有这条记录
|
||||
LambdaQueryWrapper<SysSms> smsQueryWrapper = new LambdaQueryWrapper<>();
|
||||
smsQueryWrapper.eq(SysSms::getPhone, sysSmsVerifyParam.getPhone())
|
||||
smsQueryWrapper.eq(SysSms::getPhoneNumber, sysSmsVerifyParam.getPhone())
|
||||
.and(f -> f.eq(SysSms::getSource, sysSmsVerifyParam.getSmsSendSourceEnum().getCode()))
|
||||
.and(f -> f.eq(SysSms::getTemplateCode, sysSmsVerifyParam.getTemplateCode()));
|
||||
smsQueryWrapper.orderByDesc(SysSms::getCreateTime);
|
||||
|
@ -187,7 +187,7 @@ public class SysSmsInfoServiceImpl extends ServiceImpl<SysSmsMapper, SysSms> imp
|
|||
|
||||
// 根据手机号模糊查询
|
||||
if (ObjectUtil.isNotEmpty(sysSmsInfoParam.getPhone())) {
|
||||
queryWrapper.like(SysSms::getPhone, sysSmsInfoParam.getPhone());
|
||||
queryWrapper.like(SysSms::getPhoneNumber, sysSmsInfoParam.getPhone());
|
||||
}
|
||||
|
||||
// 根据发送状态查询(字典 0 未发送,1 发送成功,2 发送失败,3 失效)
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-sms</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>sms-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--阿里云短信发送的sdk-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-sms</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>sms-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--腾讯云短信sdk-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-sms</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,14 +21,14 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>sms-sdk-aliyun</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 验证码发送 -->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>sms-business-validation</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-timer</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-timer</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>timer-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源api模块-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--参数校验模块-->
|
||||
|
@ -37,7 +37,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库sdk-->
|
||||
|
@ -45,7 +45,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-timer</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>timer-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-timer</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,14 +21,14 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>timer-business</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--hutool简单定时任务的实现-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>timer-sdk-hutool</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-validator</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- validation -->
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-validator</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>validator-sdk-black-white</artifactId>
|
||||
|
@ -18,27 +18,27 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--缓存模块的api-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-sdk-memory</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-sdk-redis</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-validator</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>validator-sdk-captcha</artifactId>
|
||||
|
@ -18,7 +18,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
@ -31,18 +31,18 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-sdk-memory</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-sdk-redis</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-validator</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>validator-sdk-count</artifactId>
|
||||
|
@ -18,19 +18,19 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--缓存模块的api-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>cache-sdk-memory</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
|
@ -40,4 +40,4 @@
|
|||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-validator</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,21 +21,21 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-sdk-black-white</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--技术校验器,为了限制某个数据一定时间内的反问频次-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-sdk-count</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- captcha图形验证码 -->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>validator-sdk-captcha</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>roses-kernel</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-a-rule</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-wrapper</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-d-wrapper</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>wrapper-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!--db模块的api-->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-api</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<version>7.0.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- aop -->
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue