package com.dsh.course.controller;
|
|
import com.dsh.course.entity.CarService;
|
import com.dsh.course.model.vo.CarServiceReq;
|
import com.dsh.course.model.vo.CarServiceRes;
|
import com.dsh.course.service.ICarServiceService;
|
import org.springframework.beans.BeanUtils;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
@RestController
|
@RequestMapping("/carService")
|
public class CarServiceController {
|
|
@Autowired
|
private ICarServiceService carServiceService;
|
|
|
/**
|
* 获取车辆服务类型
|
* @param req
|
* @return
|
*/
|
@PostMapping("/queryCarService")
|
public CarServiceRes queryCarService(CarServiceReq req){
|
try {
|
CarServiceRes res = new CarServiceRes();
|
CarService query = carServiceService.query(req.getOrderType(), req.getCarId());
|
BeanUtils.copyProperties(query, req);
|
return res;
|
}catch (Exception e){
|
e.printStackTrace();
|
return null;
|
}
|
}
|
}
|