| | |
| | | * @date 2020-12-21 |
| | | **/ |
| | | @ApiModel(value = "VipInfoListDto", description = "获取会员列表参数类") |
| | | public class VipInfoListDto { |
| | | public class VipInfoListDto extends BasePageDto { |
| | | |
| | | @ApiModelProperty(value = "查询参数(客户姓名/手机/会员编号/拼音)", example = "") |
| | | private String queryKey; |
| | |
| | | @ApiModelProperty(hidden = true) |
| | | private Long companyId; |
| | | |
| | | @ApiModelProperty(hidden = true) |
| | | private int offset; |
| | | |
| | | @ApiModelProperty(hidden = true) |
| | | private int limit; |
| | | |
| | | public int getOffset() { |
| | | return offset; |
| | | } |
| | | |
| | | public void setOffset(int offset) { |
| | | this.offset = offset; |
| | | } |
| | | |
| | | public int getLimit() { |
| | | return limit; |
| | | } |
| | | |
| | | public void setLimit(int limit) { |
| | | this.limit = limit; |
| | | } |
| | | |
| | | public Long getCompanyId() { |
| | | return companyId; |
| | | } |