| | |
| | | package com.java110.intf.report; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.owner.OwnerDto; |
| | | import com.java110.dto.report.QueryStatisticsDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | |
| | | @RequestMapping(value = "/getFinishInspectionOrderCount", method = RequestMethod.POST) |
| | | double getFinishInspectionOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | @RequestMapping(value = "/getMaintainanceOrderCount", method = RequestMethod.POST) |
| | | double getMaintainanceOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | @RequestMapping(value = "/getUndoMaintainanceOrderCount", method = RequestMethod.POST) |
| | | double getUndoMaintainanceOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | @RequestMapping(value = "/getFinishMaintainanceOrderCount", method = RequestMethod.POST) |
| | | double getFinishMaintainanceOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | @RequestMapping(value = "/getNotepadOrderCount", method = RequestMethod.POST) |
| | | double getNotepadOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | @RequestMapping(value = "/getChargeMachineOrderCount", method = RequestMethod.POST) |
| | | double getChargeMachineOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | @RequestMapping(value = "/getChargeMonthOrderCount", method = RequestMethod.POST) |
| | | double getChargeMonthOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | @RequestMapping(value = "/getOwnerReserveGoodsCount", method = RequestMethod.POST) |
| | | int getOwnerReserveGoodsCount(@RequestBody OwnerDto ownerDto); |
| | | |
| | | @RequestMapping(value = "/getOwnerReserveGoods", method = RequestMethod.POST) |
| | | List<Map> getOwnerReserveGoods(@RequestBody OwnerDto ownerDto); |
| | | |
| | | @RequestMapping(value = "/getOwnerDiningCount", method = RequestMethod.POST) |
| | | int getOwnerDiningCount(@RequestBody OwnerDto ownerDto); |
| | | |
| | | @RequestMapping(value = "/getOwnerDinings", method = RequestMethod.POST) |
| | | List<Map> getOwnerDinings(@RequestBody OwnerDto ownerDto); |
| | | } |