| | |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.owner.OwnerCarDto; |
| | | import com.java110.entity.assetImport.ImportRoomFee; |
| | | import com.java110.dto.importData.ImportCustomCreateFeeDto; |
| | | import com.java110.dto.importData.ImportRoomFee; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "${java110.user-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "user-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/ownerCarApi") |
| | | public interface IOwnerCarInnerServiceSMO { |
| | | |
| | |
| | | @RequestMapping(value = "/freshCarIds", method = RequestMethod.POST) |
| | | List<ImportRoomFee> freshCarIds(@RequestBody List<ImportRoomFee> tmpImportCarFees); |
| | | |
| | | |
| | | @RequestMapping(value = "/freshCarIdsByImportCustomCreateFee", method = RequestMethod.POST) |
| | | List<ImportCustomCreateFeeDto> freshCarIdsByImportCustomCreateFee(@RequestBody List<ImportCustomCreateFeeDto> tmpImportCarFees); |
| | | /** |
| | | * <p>查询业主车位数</p> |
| | | * |