fix:任务新增军令状时间

This commit is contained in:
2025-12-30 14:21:10 +08:00
parent 002e691215
commit 41df82cb8f
8 changed files with 35 additions and 1 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE spdm_baseline.simulation_task ADD commitmentDeadline varchar(100) NULL COMMENT '军令状时间';

View File

@@ -233,4 +233,8 @@ public class ProjectNode extends BaseEntity {
private List<String> tag10; private List<String> tag10;
private Long imageFileId; private Long imageFileId;
/**
* 军令状时间
*/
private String commitmentDeadline;
} }

View File

@@ -265,5 +265,9 @@ public class TaskNode extends BaseEntity {
private String demandId; private String demandId;
private Long imageFileId; private Long imageFileId;
/**
* 军令状时间
*/
private String commitmentDeadline;
} }

View File

@@ -198,5 +198,11 @@ public class SimulationTask implements Serializable {
@TableField("cidFlowId") @TableField("cidFlowId")
private String cidFlowId; private String cidFlowId;
@TableField("imageFileId")
private Long imageFileId;
@TableField("commitmentDeadline")
private String commitmentDeadline;
} }

View File

@@ -187,5 +187,8 @@ public class TaskNodePo extends NodeAllBase {
private String tag10; private String tag10;
private Long imageFileId; private Long imageFileId;
/**
* 军令状时间
*/
private String commitmentDeadline;
} }

View File

@@ -212,4 +212,8 @@ public class SpdmEditTaskForDataReq {
* 3D图示 * 3D图示
*/ */
private Long imageFileId; private Long imageFileId;
/**
* 军令状时间
*/
private String commitmentDeadline;
} }

View File

@@ -277,5 +277,9 @@ public class TaskEditNodeReq extends BaseEntity {
private String attentionList; private String attentionList;
private Long imageFileId; private Long imageFileId;
/**
* 军令状时间
*/
private String commitmentDeadline;
} }

View File

@@ -161,5 +161,13 @@ public class SpdmTaskVo extends BaseEntity {
* 关联的需求名称 * 关联的需求名称
*/ */
private String demandName; private String demandName;
/**
* 3D图片文件id
*/
private Long imageFileId;
/**
* 军令状时间
*/
private String commitmentDeadline;
} }