| | |
| | | if(ObjectUtil.isNotEmpty(orderListDto.getClosureTime())){ |
| | | projService.setClosureTime(orderListDto.getClosureTime()); |
| | | } |
| | | if(ObjectUtil.isNotEmpty(orderListDto.getVipId())){ |
| | | projService.setVipId(orderListDto.getVipId()); |
| | | } |
| | | if(ObjectUtil.isNotEmpty(orderListDto.getQueryKey())){ |
| | | projService.setQueryKey(orderListDto.getQueryKey()); |
| | | } |
| | |
| | | @ApiModelProperty(value = "状态", example = "待预约") |
| | | private String state; |
| | | |
| | | @ApiModelProperty(value = "会员id", example = "1") |
| | | private Long vipId; |
| | | |
| | | @ApiModelProperty(value = "查询字段") |
| | | private String queryKey; |
| | | |