xiangpei
2025-05-19 76695c351a2a1a1cb09fedcdd1459c02c49b489d
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
package cn.lili.modules.lmk.domain.query;
 
 
import cn.lili.base.AbsQuery;
import io.swagger.annotations.ApiModel;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 客户黑名单查询
 *
 * @author zxl
 * @since 2025-05-15
 */
@Data
@ApiModel(value = "CustomerBlack查询参数", description = "客户黑名单查询参数")
public class CustomerBlackQuery extends AbsQuery {
    @ApiModelProperty(value = "用户名")
    private String username;
 
    @ApiModelProperty(value = "昵称")
    private String nickName;
 
    @ApiModelProperty(value = "商户id")
    private String storeId;
 
}