This commit is contained in:
杜建超 2020-10-13 17:54:47 +08:00
parent 47413b9ed1
commit 42d85bb4b6
9 changed files with 11 additions and 9 deletions

View File

@ -1,4 +1,4 @@
package com.lz.modules.performance; package com.lz.modules.performance.controller;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;

View File

@ -1,4 +1,4 @@
package com.lz.modules.performance; package com.lz.modules.performance.controller;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;

View File

@ -1,4 +1,4 @@
package com.lz.modules.performance; package com.lz.modules.performance.controller;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;

View File

@ -1,4 +1,4 @@
package com.lz.modules.performance; package com.lz.modules.performance.controller;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;

View File

@ -1,4 +1,4 @@
package com.lz.modules.performance; package com.lz.modules.performance.controller;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;

View File

@ -1,4 +1,4 @@
package com.lz.modules.performance; package com.lz.modules.performance.controller;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;

View File

@ -1,4 +1,4 @@
package com.lz.modules.performance; package com.lz.modules.performance.controller;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;

View File

@ -1,4 +1,4 @@
package com.lz.modules.performance; package com.lz.modules.performance.controller;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;

View File

@ -1,10 +1,11 @@
package com.lz.modules.performance; package com.lz.modules.performance.controller;
import com.lz.common.utils.R; import com.lz.common.utils.R;
import com.lz.common.utils.StringUtil; import com.lz.common.utils.StringUtil;
import com.lz.modules.app.entity.StaffEntity; import com.lz.modules.app.entity.StaffEntity;
import com.lz.modules.app.service.StaffService; import com.lz.modules.app.service.StaffService;
import com.lz.modules.flow.entity.FlowRecord; import com.lz.modules.flow.entity.FlowRecord;
import com.lz.modules.flow.service.FlowChangeService;
import com.lz.modules.flow.service.FlowRecordService; import com.lz.modules.flow.service.FlowRecordService;
import com.lz.modules.performance.res.TaskListRes; import com.lz.modules.performance.res.TaskListRes;
import com.lz.modules.sys.controller.AbstractController; import com.lz.modules.sys.controller.AbstractController;
@ -33,6 +34,7 @@ public class TaskController extends AbstractController{
private FlowRecordService flowRecordService; private FlowRecordService flowRecordService;
private ResultRecordService resultRecordService; private ResultRecordService resultRecordService;
private StaffService staffService; private StaffService staffService;
private FlowChangeService flowChangeService;
@RequestMapping("task/list") @RequestMapping("task/list")
public R list(){ public R list(){