fix:节点军令状时间

This commit is contained in:
2026-01-08 10:58:00 +08:00
parent 3b180681d9
commit 9fc7905a45
4 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE spdm_baseline.simulation_node ADD commitmentDeadline varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NULL COMMENT '军令状时间';

View File

@@ -152,4 +152,7 @@ public class SimulationNode implements Serializable {
@TableField("projectSource")
private String projectSource;
@TableField("commitmentDeadline")
private String commitmentDeadline;
}

View File

@@ -166,4 +166,8 @@ public class ProjectNodePo extends NodeAllBase {
private Long imageFileId;
private String englishName;
private String analyseSoftware;
/**
* 军令状时间
*/
private String commitmentDeadline;
}

View File

@@ -100,4 +100,8 @@ public class SpdmNodeVo extends BaseEntity {
private Integer projectId;
private String projectSource;
/**
* 军令状时间
*/
private String commitmentDeadline;
}