Browse Source

待修改

feature/evaluate
jianjun 4 years ago
parent
commit
87668f1804
  1. 1
      doc/开发规范/命名规范.txt
  2. 1
      epmet-commons/epmet-commons-tools/src/main/java/com/epmet/commons/tools/dto/result/CustomerStaffInfoCacheResult.java
  3. 2
      epmet-commons/epmet-commons-tools/src/main/java/com/epmet/commons/tools/redis/common/CustomerStaffRedis.java

1
doc/开发规范/命名规范.txt

@ -9,6 +9,7 @@
4、插入:insertXXX 4、插入:insertXXX
5、删除:deleteXXX 5、删除:deleteXXX
6、获取统计值的方法用 selectCount 6、获取统计值的方法用 selectCount
索引命名规范 idx_ 普通索引; unq_唯一索引

1
epmet-commons/epmet-commons-tools/src/main/java/com/epmet/commons/tools/dto/result/CustomerStaffInfoCacheResult.java

@ -8,6 +8,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
/** /**
* desc:工作人员信息结果类
* @Author zxc * @Author zxc
* @DateTime 2021/6/15 10:00 上午 * @DateTime 2021/6/15 10:00 上午
* @DESC * @DESC

2
epmet-commons/epmet-commons-tools/src/main/java/com/epmet/commons/tools/redis/common/CustomerStaffRedis.java

@ -14,6 +14,7 @@ import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils; import org.springframework.util.CollectionUtils;
import java.util.Map; import java.util.Map;
@ -25,6 +26,7 @@ import java.util.Map;
* @since v1.0.0 2020-04-22 * @since v1.0.0 2020-04-22
*/ */
@Slf4j @Slf4j
@Component
public class CustomerStaffRedis { public class CustomerStaffRedis {
@Autowired @Autowired
private RedisUtils redisUtils; private RedisUtils redisUtils;

Loading…
Cancel
Save