old mode 100644
new mode 100755
| | |
| | | package com.java110.intf.community; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.unitAttr.UnitAttrDto; |
| | | import com.java110.dto.unit.UnitAttrDto; |
| | | import com.java110.po.unit.UnitAttrPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | /** |
| | | * 保存单元属性 |
| | | * |
| | | * @param unitAttrDto 数据对象分享 |
| | | * @param unitAttrPo 数据对象分享 |
| | | * @return 小区下的小区楼记录数 |
| | | */ |
| | | @RequestMapping(value = "/saveUnitAttr", method = RequestMethod.POST) |
| | | int saveUnitAttr(@RequestBody UnitAttrDto unitAttrDto); |
| | | int saveUnitAttr(@RequestBody UnitAttrPo unitAttrPo); |
| | | } |