Browse Source
# Conflicts: # zsw-farm/zsw-farm-impl/src/main/java/cn/iocoder/yudao/module/farm/annotation/FarmMsgAspect.javazyh
小久哥
3 years ago
22 changed files with 721 additions and 145 deletions
@ -0,0 +1,15 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.mysql.dict; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.module.system.dict.DictModel; |
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Mapper |
||||||
|
public interface DictMapper extends BaseMapper<DictModel> { |
||||||
|
|
||||||
|
List<DictModel> queryTableDictByKeysAndFilterSql(@Param("table") String table, @Param("text") String text, @Param("code") String code, @Param("filterSql") String filterSql, @Param("codeValues") List<String> codeValues); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,43 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dict; |
||||||
|
|
||||||
|
|
||||||
|
import java.lang.annotation.ElementType; |
||||||
|
import java.lang.annotation.Retention; |
||||||
|
import java.lang.annotation.RetentionPolicy; |
||||||
|
import java.lang.annotation.Target; |
||||||
|
|
||||||
|
/** |
||||||
|
* 字典注解 |
||||||
|
* @author: dangzhenghui |
||||||
|
* @date: 2019年03月17日-下午9:37:16 |
||||||
|
*/ |
||||||
|
@Target(ElementType.FIELD) |
||||||
|
@Retention(RetentionPolicy.RUNTIME) |
||||||
|
public @interface Dict { |
||||||
|
/** |
||||||
|
* 方法描述: 数据code |
||||||
|
* 作 者: dangzhenghui |
||||||
|
* 日 期: 2019年03月17日-下午9:37:16 |
||||||
|
* |
||||||
|
* @return 返回类型: String |
||||||
|
*/ |
||||||
|
String dicCode(); |
||||||
|
|
||||||
|
/** |
||||||
|
* 方法描述: 数据Text |
||||||
|
* 作 者: dangzhenghui |
||||||
|
* 日 期: 2019年03月17日-下午9:37:16 |
||||||
|
* |
||||||
|
* @return 返回类型: String |
||||||
|
*/ |
||||||
|
String dicText() default ""; |
||||||
|
|
||||||
|
/** |
||||||
|
* 方法描述: 数据字典表 |
||||||
|
* 作 者: dangzhenghui |
||||||
|
* 日 期: 2019年03月17日-下午9:37:16 |
||||||
|
* |
||||||
|
* @return 返回类型: String |
||||||
|
*/ |
||||||
|
String dictTable() default ""; |
||||||
|
} |
@ -0,0 +1,323 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dict; |
||||||
|
|
||||||
|
import cn.hutool.core.util.ObjectUtil; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.module.system.service.dict.DictDataService; |
||||||
|
import com.alibaba.fastjson.JSON; |
||||||
|
import com.alibaba.fastjson.JSONObject; |
||||||
|
import com.alibaba.fastjson.parser.Feature; |
||||||
|
import com.fasterxml.jackson.core.JsonProcessingException; |
||||||
|
import com.fasterxml.jackson.databind.ObjectMapper; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.aspectj.lang.ProceedingJoinPoint; |
||||||
|
import org.aspectj.lang.annotation.Around; |
||||||
|
import org.aspectj.lang.annotation.Aspect; |
||||||
|
import org.aspectj.lang.annotation.Pointcut; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.context.annotation.Lazy; |
||||||
|
import org.springframework.data.redis.core.RedisTemplate; |
||||||
|
import org.springframework.stereotype.Component; |
||||||
|
import org.springframework.util.StringUtils; |
||||||
|
|
||||||
|
import java.lang.reflect.Field; |
||||||
|
import java.util.*; |
||||||
|
import java.util.concurrent.TimeUnit; |
||||||
|
import java.util.stream.Collectors; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Description: 字典aop类 |
||||||
|
* @Author: dangzhenghui |
||||||
|
* @Date: 2019-3-17 21:50 |
||||||
|
* @Version: 1.0 |
||||||
|
*/ |
||||||
|
@Aspect |
||||||
|
@Component |
||||||
|
@Slf4j |
||||||
|
public class DictAspect { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private DictDataService dictDataService; |
||||||
|
@Autowired |
||||||
|
public RedisTemplate redisTemplate; |
||||||
|
|
||||||
|
public static final String DICT_TEXT_SUFFIX = "_dictText"; |
||||||
|
|
||||||
|
/** |
||||||
|
* 定义切点Pointcut |
||||||
|
*/ |
||||||
|
@Pointcut("execution(public * cn.iocoder.yudao.module.*.controller..*.*Controller.*(..))") |
||||||
|
public void excudeService() { |
||||||
|
} |
||||||
|
|
||||||
|
@Around("excudeService()") |
||||||
|
public Object doAround(ProceedingJoinPoint pjp) throws Throwable { |
||||||
|
long time1=System.currentTimeMillis(); |
||||||
|
Object result = pjp.proceed(); |
||||||
|
long time2=System.currentTimeMillis(); |
||||||
|
log.debug("获取JSON数据 耗时:"+(time2-time1)+"ms"); |
||||||
|
long start=System.currentTimeMillis(); |
||||||
|
this.parseDictText(result); |
||||||
|
long end=System.currentTimeMillis(); |
||||||
|
log.debug("注入字典到JSON数据 耗时"+(end-start)+"ms"); |
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 本方法针对返回对象为Result 的IPage的分页列表数据进行动态字典注入 |
||||||
|
* 字典注入实现 通过对实体类添加注解@dict 来标识需要的字典内容,字典分为单字典code即可 ,table字典 code table text配合使用与原来jeecg的用法相同 |
||||||
|
* 示例为SysUser 字段为sex 添加了注解@Dict(dicCode = "sex") 会在字典服务立马查出来对应的text 然后在请求list的时候将这个字典text,已字段名称加_dictText形式返回到前端 |
||||||
|
* 例输入当前返回值的就会多出一个sex_dictText字段 |
||||||
|
* { |
||||||
|
* sex:1, |
||||||
|
* sex_dictText:"男" |
||||||
|
* } |
||||||
|
* 前端直接取值sext_dictText在table里面无需再进行前端的字典转换了 |
||||||
|
* customRender:function (text) { |
||||||
|
* if(text==1){ |
||||||
|
* return "男"; |
||||||
|
* }else if(text==2){ |
||||||
|
* return "女"; |
||||||
|
* }else{ |
||||||
|
* return text; |
||||||
|
* } |
||||||
|
* } |
||||||
|
* 目前vue是这么进行字典渲染到table上的多了就很麻烦了 这个直接在服务端渲染完成前端可以直接用 |
||||||
|
* @param result |
||||||
|
*/ |
||||||
|
private void parseDictText(Object result) { |
||||||
|
if (result instanceof CommonResult) { |
||||||
|
if (((CommonResult) result).getData() instanceof PageResult) { |
||||||
|
List<JSONObject> items = new ArrayList<>(); |
||||||
|
|
||||||
|
//step.1 筛选出加了 Dict 注解的字段列表
|
||||||
|
List<Field> dictFieldList = new ArrayList<>(); |
||||||
|
// 字典数据列表, key = 字典code,value=数据列表
|
||||||
|
Map<String, List<String>> dataListMap = new HashMap<>(5); |
||||||
|
|
||||||
|
for (Object record : ((PageResult) ((CommonResult) result).getData()).getList()) { |
||||||
|
ObjectMapper mapper = new ObjectMapper(); |
||||||
|
String json="{}"; |
||||||
|
try { |
||||||
|
//解决@JsonFormat注解解析不了的问题详见SysAnnouncement类的@JsonFormat
|
||||||
|
json = mapper.writeValueAsString(record); |
||||||
|
} catch (JsonProcessingException e) { |
||||||
|
log.error("json解析失败"+e.getMessage(),e); |
||||||
|
} |
||||||
|
//update-begin--Author:scott -- Date:20211223 ----for:【issues/3303】restcontroller返回json数据后key顺序错乱 -----
|
||||||
|
JSONObject item = JSONObject.parseObject(json, Feature.OrderedField); |
||||||
|
//update-end--Author:scott -- Date:20211223 ----for:【issues/3303】restcontroller返回json数据后key顺序错乱 -----
|
||||||
|
|
||||||
|
//update-begin--Author:scott -- Date:20190603 ----for:解决继承实体字段无法翻译问题------
|
||||||
|
//for (Field field : record.getClass().getDeclaredFields()) {
|
||||||
|
// 遍历所有字段,把字典Code取出来,放到 map 里
|
||||||
|
for (Field field : getAllFields(record)) { |
||||||
|
String value = item.getString(field.getName()); |
||||||
|
if (ObjectUtil.isEmpty(value)) { |
||||||
|
continue; |
||||||
|
} |
||||||
|
//update-end--Author:scott -- Date:20190603 ----for:解决继承实体字段无法翻译问题------
|
||||||
|
if (field.getAnnotation(Dict.class) != null) { |
||||||
|
if (!dictFieldList.contains(field)) { |
||||||
|
dictFieldList.add(field); |
||||||
|
} |
||||||
|
String code = field.getAnnotation(Dict.class).dicCode(); |
||||||
|
String text = field.getAnnotation(Dict.class).dicText(); |
||||||
|
String table = field.getAnnotation(Dict.class).dictTable(); |
||||||
|
|
||||||
|
List<String> dataList; |
||||||
|
String dictCode = code; |
||||||
|
if (!StringUtils.isEmpty(table)) { |
||||||
|
dictCode = String.format("%s,%s,%s", table, text, code); |
||||||
|
} |
||||||
|
dataList = dataListMap.computeIfAbsent(dictCode, k -> new ArrayList<>()); |
||||||
|
this.listAddAllDeduplicate(dataList, Arrays.asList(value.split(","))); |
||||||
|
} |
||||||
|
//date类型默认转换string格式化日期
|
||||||
|
// if (CommonConstant.JAVA_UTIL_DATE.equals(field.getType().getName())&&field.getAnnotation(JsonFormat.class)==null&&item.get(field.getName())!=null){
|
||||||
|
// SimpleDateFormat aDate=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
||||||
|
// item.put(field.getName(), aDate.format(new Date((Long) item.get(field.getName()))));
|
||||||
|
// }
|
||||||
|
} |
||||||
|
items.add(item); |
||||||
|
} |
||||||
|
|
||||||
|
//step.2 调用翻译方法,一次性翻译
|
||||||
|
Map<String, List<DictModel>> translText = this.translateAllDict(dataListMap); |
||||||
|
|
||||||
|
//step.3 将翻译结果填充到返回结果里
|
||||||
|
for (JSONObject record : items) { |
||||||
|
for (Field field : dictFieldList) { |
||||||
|
String code = field.getAnnotation(Dict.class).dicCode(); |
||||||
|
String text = field.getAnnotation(Dict.class).dicText(); |
||||||
|
String table = field.getAnnotation(Dict.class).dictTable(); |
||||||
|
|
||||||
|
String fieldDictCode = code; |
||||||
|
if (!StringUtils.isEmpty(table)) { |
||||||
|
fieldDictCode = String.format("%s,%s,%s", table, text, code); |
||||||
|
} |
||||||
|
|
||||||
|
String value = record.getString(field.getName()); |
||||||
|
if (ObjectUtil.isNotEmpty(value)) { |
||||||
|
List<DictModel> dictModels = translText.get(fieldDictCode); |
||||||
|
if(dictModels==null || dictModels.size()==0){ |
||||||
|
continue; |
||||||
|
} |
||||||
|
|
||||||
|
String textValue = this.translDictText(dictModels, value); |
||||||
|
log.debug(" 字典Val : " + textValue); |
||||||
|
log.debug(" __翻译字典字段__ " + field.getName() + DICT_TEXT_SUFFIX + ": " + textValue); |
||||||
|
|
||||||
|
// TODO-sun 测试输出,待删
|
||||||
|
log.debug(" ---- dictCode: " + fieldDictCode); |
||||||
|
log.debug(" ---- value: " + value); |
||||||
|
log.debug(" ----- text: " + textValue); |
||||||
|
log.debug(" ---- dictModels: " + JSON.toJSONString(dictModels)); |
||||||
|
|
||||||
|
record.put(field.getName() + DICT_TEXT_SUFFIX, textValue); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
((PageResult)((CommonResult) result).getData()).setList(items); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* list 去重添加 |
||||||
|
*/ |
||||||
|
private void listAddAllDeduplicate(List<String> dataList, List<String> addList) { |
||||||
|
// 筛选出dataList中没有的数据
|
||||||
|
List<String> filterList = addList.stream().filter(i -> !dataList.contains(i)).collect(Collectors.toList()); |
||||||
|
dataList.addAll(filterList); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 一次性把所有的字典都翻译了 |
||||||
|
* 1. 所有的普通数据字典的所有数据只执行一次SQL |
||||||
|
* 2. 表字典相同的所有数据只执行一次SQL |
||||||
|
* @param dataListMap |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
private Map<String, List<DictModel>> translateAllDict(Map<String, List<String>> dataListMap) { |
||||||
|
// 翻译后的字典文本,key=dictCode
|
||||||
|
Map<String, List<DictModel>> translText = new HashMap<>(5); |
||||||
|
// 需要翻译的数据(有些可以从redis缓存中获取,就不走数据库查询)
|
||||||
|
List<String> needTranslData = new ArrayList<>(); |
||||||
|
//step.1 先通过redis中获取缓存字典数据
|
||||||
|
for (String dictCode : dataListMap.keySet()) { |
||||||
|
List<String> dataList = dataListMap.get(dictCode); |
||||||
|
if (dataList.size() == 0) { |
||||||
|
continue; |
||||||
|
} |
||||||
|
// 表字典需要翻译的数据
|
||||||
|
List<String> needTranslDataTable = new ArrayList<>(); |
||||||
|
for (String s : dataList) { |
||||||
|
String data = s.trim(); |
||||||
|
if (data.length() == 0) { |
||||||
|
continue; //跳过循环
|
||||||
|
} |
||||||
|
if (dictCode.contains(",")) { |
||||||
|
String keyString = String.format("sys:cache:dictTable::SimpleKey [%s,%s]", dictCode, data); |
||||||
|
if (redisTemplate.hasKey(keyString)) { |
||||||
|
try { |
||||||
|
String text = redisTemplate.opsForValue().get(keyString).toString(); |
||||||
|
List<DictModel> list = translText.computeIfAbsent(dictCode, k -> new ArrayList<>()); |
||||||
|
list.add(new DictModel(data, text)); |
||||||
|
} catch (Exception e) { |
||||||
|
log.warn(e.getMessage()); |
||||||
|
} |
||||||
|
} else if (!needTranslDataTable.contains(data)) { |
||||||
|
// 去重添加
|
||||||
|
needTranslDataTable.add(data); |
||||||
|
} |
||||||
|
} else { |
||||||
|
String keyString = String.format("sys:cache:dict::%s:%s", dictCode, data); |
||||||
|
if (redisTemplate.hasKey(keyString)) { |
||||||
|
try { |
||||||
|
String text = redisTemplate.opsForValue().get(keyString).toString(); |
||||||
|
List<DictModel> list = translText.computeIfAbsent(dictCode, k -> new ArrayList<>()); |
||||||
|
list.add(new DictModel(data, text)); |
||||||
|
} catch (Exception e) { |
||||||
|
log.warn(e.getMessage()); |
||||||
|
} |
||||||
|
} else if (!needTranslData.contains(data)) { |
||||||
|
// 去重添加
|
||||||
|
needTranslData.add(data); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
//step.2 调用数据库翻译表字典
|
||||||
|
if (needTranslDataTable.size() > 0) { |
||||||
|
String[] arr = dictCode.split(","); |
||||||
|
String table = arr[0], text = arr[1], code = arr[2]; |
||||||
|
String values = String.join(",", needTranslDataTable); |
||||||
|
log.info("translateDictFromTableByKeys.dictCode:" + dictCode); |
||||||
|
log.info("translateDictFromTableByKeys.values:" + values); |
||||||
|
List<DictModel> texts = dictDataService.queryTableDictTextByKeys(table,text,code,needTranslDataTable); |
||||||
|
log.info("translateDictFromTableByKeys.result:" + texts); |
||||||
|
List<DictModel> list = translText.computeIfAbsent(dictCode, k -> new ArrayList<>()); |
||||||
|
list.addAll(texts); |
||||||
|
|
||||||
|
// 做 redis 缓存
|
||||||
|
for (DictModel dict : texts) { |
||||||
|
String redisKey = String.format("sys:cache:dictTable::SimpleKey [%s,%s]", dictCode, dict.getValue()); |
||||||
|
try { |
||||||
|
// update-begin-author:taoyan date:20211012 for: 字典表翻译注解缓存未更新 issues/3061
|
||||||
|
// 保留5分钟
|
||||||
|
redisTemplate.opsForValue().set(redisKey, dict.getText(), 300, TimeUnit.SECONDS); |
||||||
|
// update-end-author:taoyan date:20211012 for: 字典表翻译注解缓存未更新 issues/3061
|
||||||
|
} catch (Exception e) { |
||||||
|
log.warn(e.getMessage(), e); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
//step.3 调用数据库进行翻译普通字典
|
||||||
|
return translText; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 字典值替换文本 |
||||||
|
* |
||||||
|
* @param dictModels |
||||||
|
* @param values |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
private String translDictText(List<DictModel> dictModels, String values) { |
||||||
|
List<String> result = new ArrayList<>(); |
||||||
|
|
||||||
|
// 允许多个逗号分隔,允许传数组对象
|
||||||
|
String[] splitVal = values.split(","); |
||||||
|
for (String val : splitVal) { |
||||||
|
String dictText = val; |
||||||
|
for (DictModel dict : dictModels) { |
||||||
|
if (val.equals(dict.getValue())) { |
||||||
|
dictText = dict.getText(); |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
result.add(dictText); |
||||||
|
} |
||||||
|
return String.join(",", result); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public static Field[] getAllFields(Object object) { |
||||||
|
Class<?> clazz = object.getClass(); |
||||||
|
List<Field> fieldList = new ArrayList<>(); |
||||||
|
while (clazz != null) { |
||||||
|
fieldList.addAll(new ArrayList<>(Arrays.asList(clazz.getDeclaredFields()))); |
||||||
|
clazz = clazz.getSuperclass(); |
||||||
|
} |
||||||
|
Field[] fields = new Field[fieldList.size()]; |
||||||
|
fieldList.toArray(fields); |
||||||
|
return fields; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,52 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dict; |
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import lombok.experimental.Accessors; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Description: 字典类 |
||||||
|
* @author: jeecg-boot |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = false) |
||||||
|
@Accessors(chain = true) |
||||||
|
@JsonIgnoreProperties(ignoreUnknown = true) |
||||||
|
public class DictModel implements Serializable{ |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
public DictModel() { |
||||||
|
} |
||||||
|
|
||||||
|
public DictModel(String value, String text) { |
||||||
|
this.value = value; |
||||||
|
this.text = text; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 字典value |
||||||
|
*/ |
||||||
|
private String value; |
||||||
|
/** |
||||||
|
* 字典文本 |
||||||
|
*/ |
||||||
|
private String text; |
||||||
|
|
||||||
|
/** |
||||||
|
* 特殊用途: JgEditableTable |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
public String getTitle() { |
||||||
|
return this.text; |
||||||
|
} |
||||||
|
/** |
||||||
|
* 特殊用途: vue3 Select组件 |
||||||
|
*/ |
||||||
|
public String getLabel() { |
||||||
|
return this.text; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
|
<mapper namespace="cn.iocoder.yudao.module.system.dal.mysql.dict.DictMapper"> |
||||||
|
|
||||||
|
<!-- 查询字典表的数据 支持设置过滤条件、设置存储值作为in查询条件 --> |
||||||
|
<select id="queryTableDictByKeysAndFilterSql" parameterType="String" resultType="org.jeecg.common.system.vo.DictModel"> |
||||||
|
select ${text} as "text", ${code} as "value" from ${table} where ${code} IN ( |
||||||
|
<foreach item="key" collection="codeValues" separator=","> |
||||||
|
#{key} |
||||||
|
</foreach> |
||||||
|
) |
||||||
|
<if test="filterSql != null and filterSql != ''"> |
||||||
|
and ${filterSql} |
||||||
|
</if> |
||||||
|
</select> |
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,12 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
|
<mapper namespace="cn.iocoder.yudao.module.system.dal.mysql.CpUser.CpUserMapper"> |
||||||
|
|
||||||
|
<!-- |
||||||
|
一般情况下,尽可能使用 Mapper 进行 CRUD 增删改查即可。 |
||||||
|
无法满足的场景,例如说多表关联查询,才使用 XML 编写 SQL。 |
||||||
|
代码生成器暂时只生成 Mapper XML 文件本身,更多推荐 MybatisX 快速开发插件来生成查询。 |
||||||
|
文档可见:https://www.iocoder.cn/MyBatis/x-plugins/ |
||||||
|
--> |
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,17 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
|
<mapper namespace="cn.iocoder.yudao.module.system.dal.mysql.dict.DictMapper"> |
||||||
|
|
||||||
|
<!-- 查询字典表的数据 支持设置过滤条件、设置存储值作为in查询条件 --> |
||||||
|
<select id="queryTableDictByKeysAndFilterSql" parameterType="String" resultType="cn.iocoder.yudao.module.system.dict.DictModel"> |
||||||
|
select ${text} as "text", ${code} as "value" from ${table} where ${code} IN ( |
||||||
|
<foreach item="key" collection="codeValues" separator=","> |
||||||
|
#{key} |
||||||
|
</foreach> |
||||||
|
) |
||||||
|
<if test="filterSql != null and filterSql != ''"> |
||||||
|
and ${filterSql} |
||||||
|
</if> |
||||||
|
</select> |
||||||
|
|
||||||
|
</mapper> |
@ -1,24 +1,27 @@ |
|||||||
#3.2.1以上使用 |
#3.2.1???? |
||||||
modulelist=com.baomidou.mybatisplus.extension.p6spy.MybatisPlusLogFactory,com.p6spy.engine.outage.P6OutageFactory |
modulelist=com.baomidou.mybatisplus.extension.p6spy.MybatisPlusLogFactory,com.p6spy.engine.outage.P6OutageFactory |
||||||
#3.2.1以下使用或者不配置 |
#3.2.1????????? |
||||||
#modulelist=com.p6spy.engine.logging.P6LogFactory,com.p6spy.engine.outage.P6OutageFactory |
#modulelist=com.p6spy.engine.logging.P6LogFactory,com.p6spy.engine.outage.P6OutageFactory |
||||||
# 自定义日志打印 |
# ??????? |
||||||
logMessageFormat=com.baomidou.mybatisplus.extension.p6spy.P6SpyLogger |
logMessageFormat=com.baomidou.mybatisplus.extension.p6spy.P6SpyLogger |
||||||
#日志输出到控制台 |
#???????? |
||||||
appender=com.baomidou.mybatisplus.extension.p6spy.StdoutLogger |
appender=com.baomidou.mybatisplus.extension.p6spy.StdoutLogger |
||||||
# 使用日志系统记录 sql |
# ???????? sql |
||||||
#appender=com.p6spy.engine.spy.appender.Slf4JLogger |
#appender=com.p6spy.engine.spy.appender.Slf4JLogger |
||||||
# 设置 p6spy driver 代理 |
# ?? p6spy driver ?? |
||||||
deregisterdrivers=true |
deregisterdrivers=true |
||||||
# 取消JDBC URL前缀 |
# ??JDBC URL?? |
||||||
useprefix=true |
useprefix=true |
||||||
# 配置记录 Log 例外,可去掉的结果集有error,info,batch,debug,statement,commit,rollback,result,resultset. |
# ???? Log ??,????????error,info,batch,debug,statement,commit,rollback,result,resultset. |
||||||
excludecategories=info,debug,result,commit,resultset |
excludecategories=info,debug,result,commit,resultset |
||||||
# 日期格式 |
# ???? |
||||||
dateformat=yyyy-MM-dd HH:mm:ss |
dateformat=yyyy-MM-dd HH:mm:ss |
||||||
# 实际驱动可多个 |
# ??????? |
||||||
#driverlist=org.h2.Driver |
#driverlist=org.h2.Driver |
||||||
# 是否开启慢SQL记录 |
# ?????SQL?? |
||||||
outagedetection=true |
outagedetection=true |
||||||
# 慢SQL记录标准 2 秒 |
# ?SQL???? 2 ? |
||||||
outagedetectioninterval=2 |
outagedetectioninterval=2 |
||||||
|
|
||||||
|
filter=true |
||||||
|
exclude=QRTZ_,ACT_, |
@ -0,0 +1,20 @@ |
|||||||
|
package cn.iocoder.yudao.module.farm.annotation; |
||||||
|
|
||||||
|
import lombok.Getter; |
||||||
|
|
||||||
|
@Getter |
||||||
|
public enum FarmMsgType { |
||||||
|
|
||||||
|
PROJECT, |
||||||
|
TASK, |
||||||
|
DISCUSS, |
||||||
|
|
||||||
|
|
||||||
|
CREATE, |
||||||
|
UPDATE, |
||||||
|
SELECT, |
||||||
|
EDIT, |
||||||
|
DELETE, |
||||||
|
|
||||||
|
NONE; |
||||||
|
} |
Loading…
Reference in new issue