LLL 1 anno fa
parent
commit
2d32547c28

+ 4 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheck/dto/CmmsSpotcheckAddDTO.java

@@ -55,6 +55,10 @@ public class CmmsSpotcheckAddDTO implements Serializable {
     @Excel(name = "点检描述", width = 15)
     @ApiModelProperty(value = "点检描述")
     private java.lang.String description;
+    /**备注*/
+    @Excel(name = "备注", width = 15)
+    @ApiModelProperty(value = "备注")
+    private java.lang.String remark;
 
     /** 设备点检-点检项信息 */
     private List<CmmsSpotcheckTitem> cmmsSpotcheckTitemList;

+ 4 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheck/entity/CmmsSpotcheck.java

@@ -88,4 +88,8 @@ public class CmmsSpotcheck implements Serializable {
 	/**所属部门*/
     @ApiModelProperty(value = "所属部门")
     private java.lang.String sysOrgCode;
+    /**备注*/
+    @Excel(name = "备注", width = 15)
+    @ApiModelProperty(value = "备注")
+    private java.lang.String remark;
 }

+ 4 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheck/vo/CmmsSpotcheckQueryVO.java

@@ -59,6 +59,10 @@ public class CmmsSpotcheckQueryVO  implements Serializable {
     @Excel(name = "点检描述", width = 15)
     @ApiModelProperty(value = "点检描述")
     private java.lang.String description;
+    /**备注*/
+    @Excel(name = "备注", width = 15)
+    @ApiModelProperty(value = "备注")
+    private java.lang.String remark;
 
     /** 设备点检-点检项信息 */
     private List<CmmsSpotcheckTitem> cmmsSpotcheckTitemList;

+ 4 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContent/dto/CmmsSpotcheckContentAddDTO.java

@@ -59,6 +59,10 @@ public class CmmsSpotcheckContentAddDTO  implements Serializable {
     /**所属部门*/
     @ApiModelProperty(value = "所属部门")
     private java.lang.String sysOrgCode;
+    /**备注*/
+    @Excel(name = "备注", width = 15)
+    @ApiModelProperty(value = "备注")
+    private java.lang.String remark;
 
     /**点检内容-点检项集合*/
     private List<CmmsSpotcheckContentItem> spotcheckContentItemList ;

+ 5 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContent/entity/CmmsSpotcheckContent.java

@@ -73,4 +73,9 @@ public class CmmsSpotcheckContent implements Serializable {
 	/**所属部门*/
     @ApiModelProperty(value = "所属部门")
     private java.lang.String sysOrgCode;
+
+    /**备注*/
+    @Excel(name = "备注", width = 15)
+    @ApiModelProperty(value = "备注")
+    private java.lang.String remark;
 }

+ 4 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContent/vo/CmmsSpotcheckContentQueryVO.java

@@ -58,6 +58,10 @@ public class CmmsSpotcheckContentQueryVO  implements Serializable {
     /**所属部门*/
     @ApiModelProperty(value = "所属部门")
     private java.lang.String sysOrgCode;
+    /**备注*/
+    @Excel(name = "备注", width = 15)
+    @ApiModelProperty(value = "备注")
+    private java.lang.String remark;
 
     /**点检内容-点检项集合*/
     private List<CmmsSpotcheckContentItem> spotcheckContentItemList ;