Commit 287ad092 authored by tianyiming's avatar tianyiming

转办人id修改

parent 3e8a71d5
......@@ -680,12 +680,7 @@ public class CommonServiceImpl implements ICommonService {
Systemctl.taskV2Client.create(taskV2Model);
String id = commonMapper.selectBusinessData(tableName, instanceId);
if ("null".equals(id)) {
id = assignee;
} else {
id = id + "," + assignee;
}
id = ObjectUtils.isEmpty(id) ? assignee : id + "," + assignee;
//修改业务数据
commonMapper.updateBusinessData(tableName, assignee, id, instanceId);
return Boolean.TRUE;
......
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