|
|
@ -26,6 +26,7 @@ |
|
|
|
package com.yxt.crm.feign.as.ascustomervehicle; |
|
|
|
|
|
|
|
import com.yxt.common.core.result.ResultBean; |
|
|
|
import com.yxt.crm.biz.crmmaintenanceenterpriserecord.CarListVo; |
|
|
|
import org.springframework.stereotype.Component; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
@ -51,4 +52,19 @@ public class AsCustomerVehicleFeignFallback implements AsCustomerVehicleFeign{ |
|
|
|
public ResultBean<List<AsCustomerCrmVehVo>> listCustomerVeh() { |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public int getVehListCountsByCustomerSid(String customerSid) { |
|
|
|
return 0; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public ResultBean<List<CarListVo>> getVehListByCustomerSid(String customerSid) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public ResultBean save(AsCustomerVehicleDto dto) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|