颓废太子
2021-11-24 4689659b197a13cce2a492bed6c752a39164e1c0
java110-interface/src/main/java/com/java110/intf/community/IRoomAttrInnerServiceSMO.java
old mode 100644 new mode 100755
@@ -3,6 +3,7 @@
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.RoomAttrDto;
import com.java110.po.room.RoomAttrPo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -18,7 +19,7 @@
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
@FeignClient(name = "community-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.community-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/roomAttrApi")
public interface IRoomAttrInnerServiceSMO {
@@ -40,4 +41,21 @@
     */
    @RequestMapping(value = "/queryRoomAttrsCount", method = RequestMethod.POST)
    int queryRoomAttrsCount(@RequestBody RoomAttrDto roomAttrDto);
    /**
     * 查询<p>小区楼</p>总记录数
     *
     * @param roomAttrPo 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/saveRoomAttr", method = RequestMethod.POST)
    int saveRoomAttr(@RequestBody RoomAttrPo roomAttrPo);
    /**
     * 查询<p>小区楼</p>总记录数
     *
     * @param roomAttrPo 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/updateRoomAttrInfoInstance", method = RequestMethod.POST)
    int updateRoomAttrInfoInstance(@RequestBody RoomAttrPo roomAttrPo);
}