fix[project]: 仿真策划的3D图示支持多选
This commit is contained in:
1
1-sql/2026-03-27/task.sql
Normal file
1
1-sql/2026-03-27/task.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE simulation_task MODIFY COLUMN imageFileId VARCHAR(255) NULL COMMENT '3D图示的文件id';
|
||||
@@ -190,7 +190,7 @@ public class SpdmTaskVo extends BaseEntity {
|
||||
/**
|
||||
* 3D图片文件id
|
||||
*/
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
|
||||
@@ -246,7 +246,7 @@ public class ProjectNode extends BaseEntity {
|
||||
// @JsonProperty(value = "tag10")
|
||||
// private List<String> tag10;
|
||||
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
|
||||
@@ -277,7 +277,7 @@ public class TaskNode extends BaseEntity {
|
||||
// private String tags10;
|
||||
|
||||
private String demandId;
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
|
||||
@@ -202,7 +202,7 @@ public class SimulationTask implements Serializable {
|
||||
private String cidFlowId;
|
||||
|
||||
@TableField("imageFileId")
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
|
||||
@TableField("commitmentDeadline")
|
||||
private String commitmentDeadline;
|
||||
|
||||
@@ -295,7 +295,7 @@ public class NodeImportAllBase extends BaseEntity {
|
||||
|
||||
|
||||
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
|
||||
@@ -163,7 +163,7 @@ public class ProjectNodePo extends NodeAllBase {
|
||||
@JsonProperty(value = "tag10")
|
||||
private String tag10;
|
||||
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
private String englishName;
|
||||
private String analyseSoftware;
|
||||
/**
|
||||
|
||||
@@ -197,7 +197,7 @@ public class TaskNodePo extends NodeAllBase {
|
||||
@JsonProperty(value = "tag10")
|
||||
private String tag10;
|
||||
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
|
||||
@@ -145,7 +145,7 @@ public class SpdmAnalysisTaskListReq extends BaseEntity {
|
||||
|
||||
private String cidFlowId;
|
||||
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
|
||||
private Integer expStatus;
|
||||
|
||||
|
||||
@@ -167,7 +167,7 @@ public class SpdmBatchTaskOprReq {
|
||||
/**
|
||||
* 3D图示的文件id
|
||||
*/
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
|
||||
/**
|
||||
* 军令状时间
|
||||
|
||||
@@ -217,7 +217,7 @@ public class SpdmEditTaskForDataReq {
|
||||
/*
|
||||
* 3D图示
|
||||
*/
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
|
||||
@@ -291,7 +291,7 @@ public class TaskEditNodeReq extends BaseEntity {
|
||||
*/
|
||||
private String attentionList;
|
||||
|
||||
private Long imageFileId;
|
||||
private String imageFileId;
|
||||
/**
|
||||
* 军令状时间
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user