| | |
| | | package com.java110.intf.common; |
| | | |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.machine.MachineRecordDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryMachineRecordsCount", method = RequestMethod.POST) |
| | | int queryMachineRecordsCount(@RequestBody MachineRecordDto machineRecordDto); |
| | | |
| | | @RequestMapping(value = "/getAssetsMachineRecords", method = RequestMethod.POST) |
| | | JSONArray getAssetsMachineRecords(@RequestBody String communityId); |
| | | } |