自动化立体仓库 - WCS系统
#
luxiaotao1123
2022-07-11 30c587a6859faa6cdcb8dc1f4e963653777d236d
src/main/java/com/zy/asrs/controller/CarController.java
@@ -1,7 +1,37 @@
package com.zy.asrs.controller;
import com.zy.asrs.service.BasSteErrService;
import com.zy.asrs.service.BasSteService;
import com.zy.asrs.service.LocMastService;
import com.zy.asrs.service.WrkMastService;
import com.zy.asrs.service.impl.MainServiceImpl;
import com.zy.core.properties.SlaveProperties;
import lombok.extern.slf4j.Slf4j;
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 2022/3/14
 */
@Slf4j
@RestController
@RequestMapping("/car")
public class CarController {
    private SlaveProperties slaveProperties;
    @Autowired
    private WrkMastService wrkMastService;
    @Autowired
    private BasSteErrService basSteErrService;
    @Autowired
    private BasSteService basSteService;
    @Autowired
    private MainServiceImpl mainService;
    @Autowired
    private LocMastService locMastService;
}