[feat] 添加流程id

This commit is contained in:
hhyykk 2024-12-23 18:29:16 +08:00
parent 22bbbce68d
commit 9534a342de
6 changed files with 15 additions and 3 deletions

View File

@ -110,4 +110,7 @@ public class ProjectTrackingDetailVO {
@Schema(description = "项目状态")
private String status;
@Schema(description = "流程实例id")
private String processInstanceId;
}

View File

@ -45,4 +45,7 @@ public class ProjectTrackingPageReqVO extends PageParam {
@Schema(description = "状态", example = "1")
private String status;
@Schema(description = "流程实例ID", example = "1")
private String processInstanceId;
}

View File

@ -64,4 +64,7 @@ public class ProjectTrackingRespVO {
@Schema(description = "状态",example = "1")
private String status;
@Schema(description = "流程实例id",example = "1")
private String processInstanceId;
}

View File

@ -108,4 +108,7 @@ public class ProjectTrackingSaveReqVO {
@Schema(description = "状态",example = "1")
private String status;
@Schema(description = "流程实例id")
private String processInstanceId;
}

View File

@ -137,9 +137,9 @@ public class ProjectTrackingDO extends BaseDO {
*/
private String status;
/**
* 拓展字段3
* 流程实例ID
*/
private String exTxt3;
private String processInstanceId;
/**
* 拓展字段4
*/