Explorar el Código

更新实体类

sola hace 1 año
padre
commit
9b85ce5328

+ 2 - 0
business-common/src/main/java/com/rongwei/bscommon/sys/service/impl/ZhcxOutsideInspectionItpServiceImpl.java

@@ -206,6 +206,8 @@ public class ZhcxOutsideInspectionItpServiceImpl extends ServiceImpl<ZhcxOutside
             dispatchDo.setCheckstarttime(vo.getStartDate());
             dispatchDo.setCheckendtime(vo.getEndDate());
             dispatchDo.setSfiles(vo.getFiles());
+            dispatchDo.setCanvas(vo.getCanvas());
+            dispatchDo.setSignature(vo.getSignature());
         }
         /* 当前操作人 */
         if (user != null && user.getId() != null) {

+ 10 - 0
business-entity/src/main/java/com/rongwei/bsentity/domain/ZhcxOutsideInspectionItpSupervisionDispatchDo.java

@@ -105,6 +105,16 @@ public class ZhcxOutsideInspectionItpSupervisionDispatchDo extends BaseDo {
      */
     @TableField("REFUSEREASON")
     private String refusereason;
+    /**
+     * 画布
+     */
+    @TableField("CANVAS")
+    private String canvas;
+    /**
+     * 签名
+     */
+    @TableField("SIGNATURE")
+    private String signature;
 
 
 }

+ 8 - 0
business-entity/src/main/java/com/rongwei/bsentity/vo/OperOutsideInspectionVo.java

@@ -57,5 +57,13 @@ public class OperOutsideInspectionVo {
      * 附件
      */
     private String files;
+    /**
+     * 画布
+     */
+    private String canvas;
+    /**
+     * 签名
+     */
+    private String signature;
 
 }