lfy 2 тижнів тому
батько
коміт
3762e219cd

+ 3 - 0
delivery-module-core/delivery-module-core-biz/src/main/java/com/unis/module/coding/controller/admin/delivery/vo/StoreRespVO.java

@@ -1,5 +1,7 @@
1 1
 package com.unis.module.coding.controller.admin.delivery.vo;
2 2
 
3
+import com.unis.framework.excel.core.annotations.DictFormat;
4
+import com.unis.module.system.enums.DictTypeConstants;
3 5
 import io.swagger.v3.oas.annotations.media.Schema;
4 6
 import lombok.Data;
5 7
 
@@ -43,5 +45,6 @@ public class StoreRespVO {
43 45
     private String mobile;
44 46
 
45 47
     @Schema(description = "储存状态")
48
+    @DictFormat(DictTypeConstants.CC_TYPE)
46 49
     private Integer cczt;
47 50
 }

+ 3 - 4
delivery-module-system/delivery-module-system-api/src/main/java/com/unis/module/system/enums/DictTypeConstants.java

@@ -27,10 +27,9 @@ public interface DictTypeConstants {
27 27
     String SYSTEM_ROLE_TYPE = "system_role_type"; // 短信接收状态
28 28
 
29 29
     String SYSTEM_AREA_DEEP = "system_area_deep"; // 地区级别:0 省 1 市 2 区县
30
-    /**
31
-     * 库存性质
32
-     */
33
-    String HY_STATE = "hy_state";
30
+
31
+    String HY_STATE = "hy_state";//核验状态
34 32
 
35 33
     String BANK_TYPE = "bank_type"; //银行类型
34
+    String CC_TYPE ="cczt";//储存状态
36 35
 }