Commit 2e8a22ec by fudahua

fix:保存完成时间

parent 2fd5ef3e
...@@ -147,6 +147,7 @@ public class PendingTaskApiServiceImpl implements PendingTaskApiService { ...@@ -147,6 +147,7 @@ public class PendingTaskApiServiceImpl implements PendingTaskApiService {
pendingTaskBO.setRelationId(relationId); pendingTaskBO.setRelationId(relationId);
pendingTaskBO.setClerkId(newExeutiveClerkId); pendingTaskBO.setClerkId(newExeutiveClerkId);
pendingTaskBO.setFinishFlag(1); pendingTaskBO.setFinishFlag(1);
pendingTaskBO.setFinishTime(new Date());
boolean b = pendingTaskService.changeByRelationId(pendingTaskBO); boolean b = pendingTaskService.changeByRelationId(pendingTaskBO);
return ServiceResponse.success(b); return ServiceResponse.success(b);
} }
......
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