old mode 100644
new mode 100755
| | |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.owner.OwnerDto; |
| | | import com.java110.po.owner.OwnerPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | /** |
| | | * <p>查询小区楼信息</p> |
| | | * |
| | | * |
| | | * @param ownerDto 数据对象分享 |
| | | * @return OwnerDto 对象数据 |
| | | */ |
| | | @RequestMapping(value = "/queryOwners", method = RequestMethod.POST) |
| | | List<OwnerDto> queryOwners(@RequestBody OwnerDto ownerDto); |
| | | |
| | | |
| | | /** |
| | | * <p>查询业主成员</p> |
| | | * |
| | | * |
| | | * @param ownerDto 数据对象分享 |
| | | * @return OwnerDto 对象数据 |
| | |
| | | |
| | | /** |
| | | * 查询<p>小区楼</p>总记录数 根据条件查询 |
| | | * |
| | | * @param ownerDto 数据对象分享 |
| | | * @return 小区下的小区楼记录数 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * <p>查询小区楼信息</p> 根据条件查询 |
| | | * |
| | | * |
| | | * @param ownerDto 数据对象分享 根据条件查询 |
| | | * @return OwnerDto 对象数据 |
| | |
| | | @RequestMapping(value = "/queryOwnersByParkingSpace", method = RequestMethod.POST) |
| | | List<OwnerDto> queryOwnersByParkingSpace(@RequestBody OwnerDto ownerDto); |
| | | |
| | | /** |
| | | * 修改业主信息 |
| | | * |
| | | * @param ownerPo |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/updateOwnerMember", method = RequestMethod.POST) |
| | | int updateOwnerMember(@RequestBody OwnerPo ownerPo); |
| | | |
| | | /** |
| | | * 查询 商铺租房记录 数量 |
| | | * |
| | | * @param ownerDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/queryOwnerLogsCountByRoom", method = RequestMethod.POST) |
| | | int queryOwnerLogsCountByRoom(@RequestBody OwnerDto ownerDto); |
| | | |
| | | /** |
| | | * 查询 商铺租房记录 |
| | | * |
| | | * @param ownerDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/queryOwnerLogsByRoom", method = RequestMethod.POST) |
| | | List<OwnerDto> queryOwnerLogsByRoom(@RequestBody OwnerDto ownerDto); |
| | | |
| | | /** |
| | | * <p>查询小区楼信息</p> |
| | | * |
| | | * @param ownerDto 数据对象分享 |
| | | * @return OwnerDto 对象数据 |
| | | */ |
| | | @RequestMapping(value = "/queryAllOwners", method = RequestMethod.POST) |
| | | List<OwnerDto> queryAllOwners(@RequestBody OwnerDto ownerDto); |
| | | } |