nidapeng
2024-03-26 87ec373c158f7fa4c65fb037822fe7142a6fd5e7
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: 否
}