StatusUpdateController.java 1.22 KB
package com.huaheng.api.wcs.controller;


import com.huaheng.api.wcs.domain.WcsTask;
import com.huaheng.api.wcs.service.statusUpdate.StatusUpdateService;
import com.huaheng.framework.aspectj.lang.annotation.ApiLogger;
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.ApiOperation;
import org.springframework.web.bind.annotation.*;

import javax.annotation.Resource;

/**状态更新接口
 * wcs向wms传递数据
 * @author ricard
 * @date   2019/10/11
 *
 */

@RestController
@RequestMapping("/API/WMS/v2")
public class StatusUpdateController extends BaseController {

    @Resource
    private StatusUpdateService statusUpdateService;

    @Log(title = "wcs到达设备", action = BusinessType.INSERT)
    @PostMapping("/CurrentEquipment")
    @ApiOperation("wcs到达设备")
    @ResponseBody
    @ApiLogger(apiName = "wcs到达设备", from = "wcs")
    public AjaxResult StatusUpdate(@RequestBody WcsTask wcsTask) {
        String taskNo = wcsTask.getTaskNo();
        return statusUpdateService.statusUpdate(taskNo);
    }
}