#
luxiaotao1123
2020-06-10 cedcb836da53948de688e04539786d88904d5bd4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.zy.common.web.wms;
 
import com.core.common.R;
import com.zy.asrs.service.BasDevpService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * Created by vincent on 2020/6/10
 */
@RestController
public class WorkController {
 
    @Autowired
    private BasDevpService basDevpService;
 
    @RequestMapping("available/put/site")
    public R availablePutSite(){
 
        // 获取有效的入库站点
        return R.ok().add(basDevpService.getAvailableDevp());
    }
 
}