Commit 7f9ee996 authored by caotao's avatar caotao

改造变更登记新增下一步执行人

parent 683c12a7
...@@ -117,4 +117,14 @@ public class JgChangeRegistrationReformDto extends BaseDto { ...@@ -117,4 +117,14 @@ public class JgChangeRegistrationReformDto extends BaseDto {
private String unitCode; 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 { ...@@ -236,5 +236,10 @@ public class JgChangeRegistrationReform extends BaseEntity {
*/ */
@TableField(value = "equip_list_name") @TableField(value = "equip_list_name")
private String equipListName; private String equipListName;
/*
* 下一节点可执行人
*/
@TableField("next_execute_user_ids")
private String nextExecuteUserIds;
} }
...@@ -316,6 +316,9 @@ public class JgChangeRegistrationReformServiceImpl extends BaseService<JgChangeR ...@@ -316,6 +316,9 @@ public class JgChangeRegistrationReformServiceImpl extends BaseService<JgChangeR
map.put("flowStatusLabel", FlowStatusEnum.TO_BE_FINISHED.getName()); map.put("flowStatusLabel", FlowStatusEnum.TO_BE_FINISHED.getName());
map.put("relationId", jgChangeRegistrationReform.getInstanceId()); map.put("relationId", jgChangeRegistrationReform.getInstanceId());
TaskV2Model taskV2Model = commonServiceImpl.updateTaskModel(map); TaskV2Model taskV2Model = commonServiceImpl.updateTaskModel(map);
jgChangeRegistrationReform.setNextTaskId(null);
jgChangeRegistrationReform.setNextExecuteUserIds(null);
jgChangeRegistrationReform.setNextExecutorIds(null);
} }
this.getBaseMapper().updateById(jgChangeRegistrationReform); 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