Blame view

src/main/java/com/huaheng/api/wcs/controller/TaskFinish.java 1.19 KB
pengcheng authored
1
2
package com.huaheng.api.wcs.controller;
pengcheng authored
3
import com.huaheng.api.wcs.domain.TaskFinishDomain;
pengcheng authored
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import com.huaheng.api.wcs.domain.WcsTask;
import com.huaheng.api.wcs.service.taskFinish.TaskFinishService;
import com.huaheng.framework.aspectj.lang.annotation.Log;
import com.huaheng.framework.aspectj.lang.constant.BusinessType;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.*;

import javax.annotation.Resource;

/**任务完成
 * wcswms传递数据
 * @author ricard
 * @date   2019/10/11
 *
 */

@RestController
mahuandong authored
24
@RequestMapping("/API/WCS/v2")
pengcheng authored
25
26
27
28
29
30
31
32
33
public class TaskFinish extends BaseController {

    @Resource
    private TaskFinishService taskFinishService;

    @Log(title = "wcs任务完成", action = BusinessType.INSERT)
    @PostMapping("/TaskFinish")
    @ApiOperation("wcs任务完成")
    @ResponseBody
pengcheng authored
34
    public AjaxResult TaskFinish(@RequestBody TaskFinishDomain taskFinishDomain)
pengcheng authored
35
    {
pengcheng authored
36
        AjaxResult ajaxResult =taskFinishService.completeTaskByWCS(taskFinishDomain) ;
pengcheng authored
37
38
39
40
41
        return ajaxResult;
    }


}