#
luxiaotao1123
2020-06-10 46846b72f11d260a590fec4ba502b74ae3866acb
src/main/java/com/zy/common/web/wms/WorkController.java
@@ -1,5 +1,6 @@
package com.zy.common.web.wms;
import com.core.annotations.ManagerAuth;
import com.core.common.R;
import com.zy.asrs.service.BasDevpService;
import org.springframework.beans.factory.annotation.Autowired;
@@ -7,6 +8,7 @@
import org.springframework.web.bind.annotation.RestController;
/**
 * 工作流接口控制器
 * Created by vincent on 2020/6/10
 */
@RestController
@@ -16,9 +18,8 @@
    private BasDevpService basDevpService;
    @RequestMapping("available/put/site")
    @ManagerAuth(memo = "获取有效的入库站点")
    public R availablePutSite(){
        // 获取有效的入库站点
        return R.ok().add(basDevpService.getAvailableDevp());
    }