| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "user-service", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "${java110.user-service}", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/userAttrApi") |
| | | public interface IUserAttrInnerServiceSMO { |
| | | |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryUserAttrsCount", method = RequestMethod.POST) |
| | | int queryUserAttrsCount(@RequestBody UserAttrDto userAttrDto); |
| | | /** |
| | | * 查询<p>小区楼</p>总记录数 |
| | | * |
| | | * @param userAttrDto 数据对象分享 |
| | | * @return 小区下的小区楼记录数 |
| | | */ |
| | | @RequestMapping(value = "/deleteUserAttr", method = RequestMethod.POST) |
| | | int deleteUserAttr(@RequestBody UserAttrDto userAttrDto); |
| | | |
| | | /** |
| | | * 查询<p>小区楼</p>总记录数 |
| | |
| | | */ |
| | | @RequestMapping(value = "/saveUserAttr", method = RequestMethod.POST) |
| | | int saveUserAttr(@RequestBody UserAttrPo userAttrPo); |
| | | /** |
| | | * 查询<p>小区楼</p>总记录数 |
| | | * |
| | | * @param userAttrPo 数据对象分享 |
| | | * @return 小区下的小区楼记录数 |
| | | */ |
| | | @RequestMapping(value = "/updateUserAttrInfoInstance", method = RequestMethod.POST) |
| | | int updateUserAttrInfoInstance(@RequestBody UserAttrPo userAttrPo); |
| | | } |