| | |
| | | |
| | | private String taskId; |
| | | |
| | | private String staffId; |
| | | |
| | | |
| | | public String getWorkCycle() { |
| | | return workCycle; |
| | |
| | | public void setTaskId(String taskId) { |
| | | this.taskId = taskId; |
| | | } |
| | | |
| | | public String getStaffId() { |
| | | return staffId; |
| | | } |
| | | |
| | | public void setStaffId(String staffId) { |
| | | this.staffId = staffId; |
| | | } |
| | | } |
| | |
| | | public void doCmd(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException, ParseException { |
| | | WorkPoolDto workPoolDto = BeanConvertUtil.covertBean(reqJson, WorkPoolDto.class); |
| | | |
| | | |
| | | String userId = CmdContextUtils.getUserId(context); |
| | | workPoolDto.setCreateUserId(userId); |
| | | workPoolDto.setStaffId(userId); |
| | | |
| | | int count = workPoolV1InnerServiceSMOImpl.queryTaskWorkPoolsCount(workPoolDto); |
| | | |