Sfoglia il codice sorgente

Merge remote-tracking branch 'origin/master'

zhuang 10 mesi fa
parent
commit
2eaaa42486

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

@@ -171,6 +171,14 @@ public class ZhcxProjectManageServiceImpl extends ServiceImpl<ZhcxProjectManageD
 
         //持久化
         saveSummaryData2Db(prjTitle, celldatas, summaryDataBo);
+
+        //最近更新时间
+        if(ObjectUtil.isNotEmpty(dto.getBatchId())) {
+            ZhcxProjectManageRectifyBatchDo batchEntity = new ZhcxProjectManageRectifyBatchDo();
+            batchEntity.setId(dto.getBatchId());
+            batchEntity.setLastmodifytime(new Date());
+            projectManageRectifyBatchService.updateById(batchEntity);
+        }
     }
 
     /**

+ 17 - 0
business-entity/src/main/java/com/rongwei/bsentity/domain/ZhcxProjectManageRectifyBatchDo.java

@@ -75,5 +75,22 @@ public class ZhcxProjectManageRectifyBatchDo extends BaseDo {
     @TableField("SUMMARYFILES")
     private String summaryfiles;
 
+    /**
+     * 保存状态
+     */
+    @TableField("SAVESTATUS")
+    private String savestatus;
+
+    /**
+     * 数据状态
+     */
+    @TableField("DATASTATUS")
+    private String datastatus;
+
+    /**
+     * 上次更新时间
+     */
+    @TableField("LASTMODIFYTIME")
+    private Date lastmodifytime;
 
 }