|
|
@@ -3,6 +3,7 @@ package com.java110.intf.community;
|
|
|
|
|
|
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;
|
|
|
@@ -44,9 +45,9 @@ public interface IRoomAttrInnerServiceSMO {
|
|
|
/**
|
|
|
* 查询<p>小区楼</p>总记录数
|
|
|
*
|
|
|
- * @param roomAttrDto 数据对象分享
|
|
|
+ * @param roomAttrPo 数据对象分享
|
|
|
* @return 小区下的小区楼记录数
|
|
|
*/
|
|
|
@RequestMapping(value = "/saveRoomAttr", method = RequestMethod.POST)
|
|
|
- int saveRoomAttr(@RequestBody RoomAttrDto roomAttrDto);
|
|
|
+ int saveRoomAttr(@RequestBody RoomAttrPo roomAttrPo);
|
|
|
}
|