parent
4f6878f37e
commit
25f5bb483c
@ -0,0 +1,17 @@
|
||||
package com.taxi.aipboss.service;
|
||||
|
||||
import com.internal.dto.Car;
|
||||
import com.internal.dto.ResponseResult;
|
||||
import com.taxi.aipboss.remote.ServiceDriverUserClient;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
public class CarService {
|
||||
@Autowired
|
||||
private ServiceDriverUserClient serviceDriverUserClient;
|
||||
|
||||
public ResponseResult addCar(Car car){
|
||||
return serviceDriverUserClient.addCar(car);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue