自动化立体仓库 - WCS系统
#
luxiaotao1123
2022-03-16 5d3b11da49ed40a31b90b1c84f5b180f9b682c6f
src/main/java/com/zy/asrs/controller/CarController.java
@@ -1,7 +1,37 @@
package com.zy.asrs.controller;
import com.zy.asrs.mapper.BasCrnErrorMapper;
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 BasCrnErrorMapper basCrnErrorMapper;
    @Autowired
    private BasSteService basSteService;
    @Autowired
    private MainServiceImpl mainService;
    @Autowired
    private LocMastService locMastService;
}