Commit bc53930050c54d332991c216162df13ee444d4a3

Authored by wangqian
1 parent efe3c673

工单管理

urbanops-module-api/urbanops-module-workorder-api/src/main/java/com/zteits/urbanops/module/workorder/dto/MainInfoRespVO.java
... ... @@ -76,7 +76,6 @@ public class MainInfoRespVO {
76 76 private Integer pressingType;
77 77  
78 78 @Schema(description = "提交用户ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "12757")
79   - @ExcelProperty("提交用户ID")
80 79 private Long userId;
81 80  
82 81 @Schema(description = "提交用户名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "王五")
... ... @@ -84,9 +83,12 @@ public class MainInfoRespVO {
84 83 private String userName;
85 84  
86 85 @Schema(description = "部门id", requiredMode = Schema.RequiredMode.REQUIRED, example = "26936")
87   - @ExcelProperty("部门id")
88 86 private Long companyId;
89 87  
  88 + @Schema(description = "单位名称")
  89 + @ExcelProperty("单位名称")
  90 + private String companyName;
  91 +
90 92 @Schema(description = "经纬度类型: 1:国标; 2:百度;3:高德;4:腾讯", example = "2")
91 93 @ExcelProperty("经纬度类型: 1:国标; 2:百度;3:高德;4:腾讯")
92 94 private Integer latLonType;
... ... @@ -143,13 +145,12 @@ public class MainInfoRespVO {
143 145 @Schema(description = "共同处理人名称,多个逗号拼接")
144 146 private String coHandlersName;
145 147  
146   - @Schema(description = "单位名称")
147   - private String companyName;
148 148 @Schema(description = "提交人电话")
149 149 private String userMobile;
150 150 /**
151 151 * 实施人员名称
152 152 */
  153 + @Schema(description = "养护员")
153 154 private String workerName;
154 155  
155 156 /**
... ...