package com.zy.asrs.controller;
|
|
import com.core.annotations.ManagerAuth;
|
import com.core.common.R;
|
import com.zy.asrs.service.WorkService;
|
import com.zy.common.web.BaseController;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestParam;
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
/**
|
* 工作流接口控制器
|
* Created by vincent on 2020/6/10
|
*/
|
@RestController
|
public class WorkController extends BaseController {
|
|
@Autowired
|
private WorkService workService;
|
|
@RequestMapping("/hand/control/wrkMast")
|
@ManagerAuth(memo = "手动处理工作档")
|
public R handControlWrkMast(@RequestParam String workNo,
|
@RequestParam Integer type){
|
if (type == 1) {
|
workService.completeWrkMast(workNo, getUserId());
|
return R.ok("任务已完成");
|
} else if (type == 2) {
|
workService.cancelWrkMast(workNo, getUserId());
|
return R.ok("任务已取消");
|
}
|
return R.ok();
|
}
|
|
}
|