自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-11 c49d38e3abd223c5f60d3d5fef53144a2d0c6e25
src/main/java/com/zy/asrs/controller/WorkController.java
@@ -5,6 +5,7 @@
import com.core.common.R;
import com.zy.asrs.entity.param.FullStoreParam;
import com.zy.asrs.service.BasDevpService;
import com.zy.asrs.service.WorkService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -18,6 +19,8 @@
public class WorkController {
    @Autowired
    private WorkService workService;
    @Autowired
    private BasDevpService basDevpService;
    @RequestMapping("/available/put/site")
@@ -29,9 +32,8 @@
    @RequestMapping("/full/store/start")
    @ManagerAuth(memo = "全板入库")
    public R start(@RequestBody FullStoreParam fullStoreParam) {
        System.out.println(JSON.toJSONString(fullStoreParam));
        workService.startupFullStore(fullStoreParam);
        return R.ok();
    }