| | |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.RoomDto; |
| | | import com.java110.dto.fee.FeeDto; |
| | | import com.java110.dto.owner.OwnerCarDto; |
| | | import com.java110.dto.owner.OwnerDto; |
| | | 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.report-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "report-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/reportCommunityApi") |
| | | public interface IReportCommunityInnerServiceSMO { |
| | | |
| | |
| | | @RequestMapping(value = "/queryRoomsTree", method = RequestMethod.POST) |
| | | List<RoomDto> queryRoomsTree(@RequestBody RoomDto roomDto); |
| | | |
| | | /** |
| | | * 查询车辆变更总数 |
| | | * @param ownerCarDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/queryHisOwnerCarCount", method = RequestMethod.POST) |
| | | int queryHisOwnerCarCount(@RequestBody OwnerCarDto ownerCarDto); |
| | | |
| | | /** |
| | | * 查询车辆变更 |
| | | * @param ownerCarDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/queryHisOwnerCars", method = RequestMethod.POST) |
| | | List<OwnerCarDto> queryHisOwnerCars(@RequestBody OwnerCarDto ownerCarDto); |
| | | |
| | | @RequestMapping(value = "/queryHisOwnerCount", method = RequestMethod.POST) |
| | | int queryHisOwnerCount(@RequestBody OwnerDto ownerDto); |
| | | |
| | | @RequestMapping(value = "/queryHisOwners", method = RequestMethod.POST) |
| | | List<OwnerDto> queryHisOwners(@RequestBody OwnerDto ownerDto); |
| | | |
| | | @RequestMapping(value = "/queryHisFeeCount", method = RequestMethod.POST) |
| | | int queryHisFeeCount(@RequestBody FeeDto feeDto); |
| | | |
| | | @RequestMapping(value = "/queryHisFees", method = RequestMethod.POST) |
| | | List<FeeDto> queryHisFees(@RequestBody FeeDto feeDto); |
| | | } |