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;
|
|
|
|
}
|