Merge branch 'master' of https://gitee.com/zhijiantianya/ruoyi-vue-pro
This commit is contained in:
commit
66865fda75
File diff suppressed because it is too large
Load Diff
@ -28,7 +28,7 @@
|
|||||||
<mybatis-plus-generator.version>3.5.5</mybatis-plus-generator.version>
|
<mybatis-plus-generator.version>3.5.5</mybatis-plus-generator.version>
|
||||||
<dynamic-datasource.version>4.3.0</dynamic-datasource.version>
|
<dynamic-datasource.version>4.3.0</dynamic-datasource.version>
|
||||||
<mybatis-plus-join.version>1.4.10</mybatis-plus-join.version>
|
<mybatis-plus-join.version>1.4.10</mybatis-plus-join.version>
|
||||||
<redisson.version>3.26.0</redisson.version>
|
<redisson.version>3.18.0</redisson.version> <!-- Spring Boot 2.X 最多使用 3.18.0 版本,否则会报 Tuple NoClassDefFoundError -->
|
||||||
<dm8.jdbc.version>8.1.3.62</dm8.jdbc.version>
|
<dm8.jdbc.version>8.1.3.62</dm8.jdbc.version>
|
||||||
<!-- 消息队列 -->
|
<!-- 消息队列 -->
|
||||||
<rocketmq-spring.version>2.2.3</rocketmq-spring.version>
|
<rocketmq-spring.version>2.2.3</rocketmq-spring.version>
|
||||||
|
@ -151,7 +151,7 @@ public class QueryWrapperX<T> extends QueryWrapper<T> {
|
|||||||
switch (SqlConstants.DB_TYPE) {
|
switch (SqlConstants.DB_TYPE) {
|
||||||
case ORACLE:
|
case ORACLE:
|
||||||
case ORACLE_12C:
|
case ORACLE_12C:
|
||||||
super.eq("ROWNUM", n);
|
super.le("ROWNUM", n);
|
||||||
break;
|
break;
|
||||||
case SQL_SERVER:
|
case SQL_SERVER:
|
||||||
case SQL_SERVER2005:
|
case SQL_SERVER2005:
|
||||||
|
@ -12,7 +12,7 @@ import javax.validation.constraints.Size;
|
|||||||
public class NoticeSaveReqVO {
|
public class NoticeSaveReqVO {
|
||||||
|
|
||||||
@Schema(description = "岗位公告编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
@Schema(description = "岗位公告编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
||||||
@NotNull(message = "岗位公告编号不能为空")
|
// @NotNull(message = "岗位公告编号不能为空")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
@Schema(description = "公告标题", requiredMode = Schema.RequiredMode.REQUIRED, example = "小博主")
|
@Schema(description = "公告标题", requiredMode = Schema.RequiredMode.REQUIRED, example = "小博主")
|
||||||
|
@ -59,7 +59,7 @@ public class MailTemplateServiceImpl implements MailTemplateService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@CacheEvict(cacheNames = RedisKeyConstants.NOTIFY_TEMPLATE,
|
@CacheEvict(cacheNames = RedisKeyConstants.MAIL_TEMPLATE,
|
||||||
allEntries = true) // allEntries 清空所有缓存,因为可能修改到 code 字段,不好清理
|
allEntries = true) // allEntries 清空所有缓存,因为可能修改到 code 字段,不好清理
|
||||||
public void updateMailTemplate(@Valid MailTemplateSaveReqVO updateReqVO) {
|
public void updateMailTemplate(@Valid MailTemplateSaveReqVO updateReqVO) {
|
||||||
// 校验是否存在
|
// 校验是否存在
|
||||||
@ -87,7 +87,7 @@ public class MailTemplateServiceImpl implements MailTemplateService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@CacheEvict(cacheNames = RedisKeyConstants.NOTIFY_TEMPLATE,
|
@CacheEvict(cacheNames = RedisKeyConstants.MAIL_TEMPLATE,
|
||||||
allEntries = true) // allEntries 清空所有缓存,因为 id 不是直接的缓存 code,不好清理
|
allEntries = true) // allEntries 清空所有缓存,因为 id 不是直接的缓存 code,不好清理
|
||||||
public void deleteMailTemplate(Long id) {
|
public void deleteMailTemplate(Long id) {
|
||||||
// 校验是否存在
|
// 校验是否存在
|
||||||
|
Loading…
Reference in New Issue
Block a user