update 项目合规评估流程-查询流程信息,返回值增加draftId

This commit is contained in:
lijiarao
2023-12-14 14:20:19 +08:00
parent 100974f53e
commit b58810ada1
2 changed files with 5 additions and 0 deletions
@@ -329,6 +329,7 @@ public class ProcessHandleServiceImpl implements IProcessHandleService {
basicTaskInfoDTO.setHandleText(processDraft.getHandleText()) ; // 流程审批信息-备注
basicTaskInfoDTO.setHandleFile(processDraft.getHandleFile()) ; // 流程审批信息-附件
processDraft.getUserId(); // 用户id
processInfoVO.setDraftId(draftId);
processInfoVO.setInfoJsonStr(processDraft.getInfoJsonStr()) ;//草稿信息json字符串
processInfoVO.setBasicProcessInfoDTO(basicProcessInfoDTO);
@@ -44,6 +44,10 @@ public class ProcessInfoVO<T> implements Serializable {
@ApiModelProperty(value = "人员信息")
private Map<String, Object> userInfoMap;
/**草稿id*/
@ApiModelProperty(value = "草稿id")
private String draftId;
/**草稿信息json字符串*/
@ApiModelProperty(value = "草稿信息json字符串")
private String infoJsonStr;