| | |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 类表述: 服务之前调用的接口类,不对外提供接口能力 只用于接口建调用 |
| | |
| | | * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下 |
| | | * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行 |
| | | */ |
| | | @FeignClient(name = "${java110.user-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "user-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/ownerV1Api") |
| | | public interface IOwnerV1InnerServiceSMO { |
| | | |
| | | |
| | | @RequestMapping(value = "/saveOwner", method = RequestMethod.POST) |
| | | public int saveOwner(@RequestBody OwnerPo ownerPo); |
| | | int saveOwner(@RequestBody OwnerPo ownerPo); |
| | | |
| | | @RequestMapping(value = "/updateOwner", method = RequestMethod.POST) |
| | | public int updateOwner(@RequestBody OwnerPo ownerPo); |
| | | int updateOwner(@RequestBody OwnerPo ownerPo); |
| | | |
| | | @RequestMapping(value = "/deleteOwner", method = RequestMethod.POST) |
| | | public int deleteOwner(@RequestBody OwnerPo ownerPo); |
| | | int deleteOwner(@RequestBody OwnerPo ownerPo); |
| | | |
| | | /** |
| | | * <p>查询小区楼信息</p> |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryOwnersCount", method = RequestMethod.POST) |
| | | int queryOwnersCount(@RequestBody OwnerDto ownerDto); |
| | | |
| | | @RequestMapping(value = "/queryOwnersBindCount", method = RequestMethod.POST) |
| | | int queryOwnersBindCount(@RequestBody OwnerDto ownerDto); |
| | | |
| | | /** |
| | | * 查询 业主成员数 |
| | | * @param ownerIds |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/queryOwnerMembersCount", method = RequestMethod.POST) |
| | | List<Map> queryOwnerMembersCount(@RequestBody List<String> ownerIds); |
| | | } |