java110
2021-11-24 59d4ac771099844721d4fe0b2ff6f3ac28162099
java110-interface/src/main/java/com/java110/intf/community/IFloorAttrInnerServiceSMO.java
old mode 100644 new mode 100755
@@ -2,6 +2,7 @@
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.floorAttr.FloorAttrDto;
import com.java110.po.floorAttr.FloorAttrPo;
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 = "community-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.community-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/floorAttrApi")
public interface IFloorAttrInnerServiceSMO {
@@ -44,9 +45,17 @@
    /**
     * 保存 楼栋属性
     *
     * @param floorAttrDto 数据对象分享
     * @param floorAttrPo 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/saveFloorAttr", method = RequestMethod.POST)
    int saveFloorAttr(@RequestBody FloorAttrDto floorAttrDto);
    int saveFloorAttr(@RequestBody FloorAttrPo floorAttrPo);
    /**
     * 保存 楼栋属性
     *
     * @param floorAttrPo 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/updateFloorAttrInfoInstance", method = RequestMethod.POST)
    int updateFloorAttrInfoInstance(@RequestBody FloorAttrPo floorAttrPo);
}