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; |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryOwners", method = RequestMethod.POST) |
| | | List<OwnerDto> queryOwners(@RequestBody OwnerDto ownerDto); |
| | | |
| | | |
| | | |
| | | /** |
| | | * <p>查询业主成员</p> |
| | |
| | | @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); |
| | | } |