fix:任务新增军令状时间
This commit is contained in:
1
1-sql/2025-12-30/project/simulation_task.sql
Normal file
1
1-sql/2025-12-30/project/simulation_task.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE spdm_baseline.simulation_task ADD commitmentDeadline varchar(100) NULL COMMENT '军令状时间';
|
||||
@@ -233,4 +233,8 @@ public class ProjectNode extends BaseEntity {
|
||||
private List<String> tag10;
|
||||
|
||||
private Long imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
private String commitmentDeadline;
|
||||
}
|
||||
|
||||
@@ -265,5 +265,9 @@ public class TaskNode extends BaseEntity {
|
||||
|
||||
private String demandId;
|
||||
private Long imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
private String commitmentDeadline;
|
||||
|
||||
}
|
||||
|
||||
@@ -198,5 +198,11 @@ public class SimulationTask implements Serializable {
|
||||
@TableField("cidFlowId")
|
||||
private String cidFlowId;
|
||||
|
||||
@TableField("imageFileId")
|
||||
private Long imageFileId;
|
||||
|
||||
@TableField("commitmentDeadline")
|
||||
private String commitmentDeadline;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -187,5 +187,8 @@ public class TaskNodePo extends NodeAllBase {
|
||||
private String tag10;
|
||||
|
||||
private Long imageFileId;
|
||||
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
private String commitmentDeadline;
|
||||
}
|
||||
|
||||
@@ -212,4 +212,8 @@ public class SpdmEditTaskForDataReq {
|
||||
* 3D图示
|
||||
*/
|
||||
private Long imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
private String commitmentDeadline;
|
||||
}
|
||||
|
||||
@@ -277,5 +277,9 @@ public class TaskEditNodeReq extends BaseEntity {
|
||||
private String attentionList;
|
||||
|
||||
private Long imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
private String commitmentDeadline;
|
||||
|
||||
}
|
||||
|
||||
@@ -161,5 +161,13 @@ public class SpdmTaskVo extends BaseEntity {
|
||||
* 关联的需求名称
|
||||
*/
|
||||
private String demandName;
|
||||
/**
|
||||
* 3D图片文件id
|
||||
*/
|
||||
private Long imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
private String commitmentDeadline;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user