xiaoyong931011
2021-07-14 cf148cae4937f807347e56d94b2dc96c9f258c59
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
}