jiangping
2024-11-26 cdebc6f4c64b631df8a77cd850b0fd17bf4e9e5b
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.doumee.core.haikang.model.param.respose;
 
import lombok.Data;
 
@Data
public class PrivilegeGroupInfoResponse {
 
 
    private String  privilegeGroupId;//    string    False    权限组ID, 用于访客登记时对访客授权
    private String privilegeGroupName;//    string    False    权限组名称
    private String remark;//    string    False    描述
    private Integer isDefault    ;//number    False    是否是默认权限组0: 是1: 否
}