java110
2022-06-01 e52ddfe8caf7d0027950033a5aff2a1fd3482e9d
java110-interface/src/main/java/com/java110/intf/common/IMachineInnerServiceSMO.java
old mode 100644 new mode 100755
@@ -17,7 +17,7 @@
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
@FeignClient(name = "common-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/machineApi")
public interface IMachineInnerServiceSMO {
@@ -38,4 +38,14 @@
     */
    @RequestMapping(value = "/queryMachinesCount", method = RequestMethod.POST)
    int queryMachinesCount(@RequestBody MachineDto machineDto);
    /**
     * <p>查询小区楼信息</p>
     *
     * @param machineDto 数据对象分享
     * @return MachineDto 对象数据
     */
    @RequestMapping(value = "/updateMachineState", method = RequestMethod.POST)
    int updateMachineState(@RequestBody MachineDto machineDto);
}