ChangeController.java 721 Bytes
package com.huaheng.api.wcs.controller;

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.*;


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



    @Log(title = "换站处理", action = BusinessType.INSERT)
    @PostMapping("/OutboundTask")
    @ApiOperation("换站处理")
    @ResponseBody
    public AjaxResult emptyOutHandle(int id) {


        return AjaxResult.success();
    }

}