zxl
8 天以前 0fb6b9d8d414822668c401a2b507df1fe6d1fa2d
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package cn.lili.modules.member.entity.dto;
 
import cn.lili.mybatis.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.hibernate.validator.constraints.Length;
 
/**
 * 店员查询
 *
 * @author Chopper
 * @since 2020/11/16 19:55
 */
@Data
@ApiModel(value = "店员查询")
public class ClerkQueryDTO extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
 
    @ApiModelProperty(value = "店员名称")
    @Length(max = 20, message = "用户名长度不能超过20个字符")
    private String clerkName;
 
    @ApiModelProperty(value = "手机")
    @Length(max = 11, message = "手机号长度不能超过11")
    private String mobile;
 
    @ApiModelProperty(value = "所属部门id")
    private String departmentId;
 
    @ApiModelProperty(value = "是否为超级管理员")
    private Boolean isSuper;
 
    @ApiModelProperty(value = "状态")
    private Boolean status;
 
    @ApiModelProperty(value = "店铺id", hidden = true)
    private String storeId;
}