wuxw
2022-05-10 8f61316069a6ffffb0998ed3f498bd4e3acc77e4
java110-interface/src/main/java/com/java110/intf/common/IMachineAttrInnerServiceSMO.java
old mode 100644 new mode 100755
@@ -2,6 +2,7 @@
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.machine.MachineAttrDto;
import com.java110.po.machine.MachineAttrPo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -17,7 +18,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("/machineAttrApi")
public interface IMachineAttrInnerServiceSMO {
@@ -38,4 +39,15 @@
     */
    @RequestMapping(value = "/queryMachineAttrsCount", method = RequestMethod.POST)
    int queryMachineAttrsCount(@RequestBody MachineAttrDto machineAttrDto);
    /**
     * <p>查询小区楼信息</p>
     *
     * @param machineAttrPo 数据对象分享
     * @return MachineAttrDto 对象数据
     */
    @RequestMapping(value = "/saveMachineAttrs", method = RequestMethod.POST)
    int saveMachineAttrs(@RequestBody MachineAttrPo machineAttrPo);
}