zxl
7 天以前 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
package cn.lili.modules.lmk.domain.query;
 
import cn.lili.base.AbsQuery;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * 用户权限管理(商家)查询
 *
 * @author zxl
 * @since 2025-05-30
 */
@Data
@ApiModel(value = "LmkUserPermissions查询参数", description = "用户权限管理(商家)查询参数")
public class StoreMemberQuery extends AbsQuery {
 
    /** 真实姓名 */
    private String realName;
    /** 店铺id */
    private String storeId;
    /** 电话 */
    private String mobile;
    /** 部门id*/
    private String departmentId;
 
 
}