java110
2020-10-26 175a4705ff309cf5b262369849ba9e6f0bcde693
java110-interface/src/main/java/com/java110/intf/common/IMachineRecordInnerServiceSMO.java
@@ -1,11 +1,13 @@
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;
@@ -38,4 +40,7 @@
     */
    @RequestMapping(value = "/queryMachineRecordsCount", method = RequestMethod.POST)
    int queryMachineRecordsCount(@RequestBody MachineRecordDto machineRecordDto);
    @RequestMapping(value = "/getAssetsMachineRecords", method = RequestMethod.POST)
    JSONArray getAssetsMachineRecords(@RequestBody String communityId);
}