| package com.xzx.gc.user.dto; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @ApiModel(value = "JhyInfoListDto", description = "后台集货员列表接收参数类") | 
| public class JhyInfoListDto { | 
|   | 
|     @ApiModelProperty(value = "第几页", required = true) | 
|     private int page; | 
|   | 
|     @ApiModelProperty(value = "每一页数量", required = true) | 
|     private int limit; | 
|   | 
|     @ApiModelProperty(value = "是否集货员 1-是2-否") | 
|     private Integer isJhy; | 
|   | 
|     @ApiModelProperty(value = "查询字段") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "审核状态 1-待审核 2-审核通过 3-审核拒绝") | 
|     private Integer status; | 
| } |