Commit 07d2ada7 authored by 王果's avatar 王果

Merge remote-tracking branch 'origin/develop_tzs_register' into develop_tzs_register

parents ab410a47 7f9ee996
......@@ -117,4 +117,14 @@ public class JgChangeRegistrationReformDto extends BaseDto {
private String unitCode;
private String nextTaskId;
private String createUserName;
private String createUserCompanyName;
private String equipListName;
private String nextExecuteUserIds;
}
......@@ -236,5 +236,10 @@ public class JgChangeRegistrationReform extends BaseEntity {
*/
@TableField(value = "equip_list_name")
private String equipListName;
/*
* 下一节点可执行人
*/
@TableField("next_execute_user_ids")
private String nextExecuteUserIds;
}
......@@ -316,6 +316,9 @@ public class JgChangeRegistrationReformServiceImpl extends BaseService<JgChangeR
map.put("flowStatusLabel", FlowStatusEnum.TO_BE_FINISHED.getName());
map.put("relationId", jgChangeRegistrationReform.getInstanceId());
TaskV2Model taskV2Model = commonServiceImpl.updateTaskModel(map);
jgChangeRegistrationReform.setNextTaskId(null);
jgChangeRegistrationReform.setNextExecuteUserIds(null);
jgChangeRegistrationReform.setNextExecutorIds(null);
}
this.getBaseMapper().updateById(jgChangeRegistrationReform);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment