mac
2024-07-16 3ec7de773bff5582411c6f1f659d35cf8fb1734a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.hdl.photovoltaic.ui.bean;
 
import java.io.Serializable;
 
public class UserRightTypeBean implements Serializable {
    private String userRightType;//权限类型(MANAGER:公司管理员;USER:普通员工)
 
    public String getUserRightType() {
        return userRightType == null ? "" : userRightType;
    }
 
    public void setUserRightType(String userRightType) {
        this.userRightType = userRightType;
    }
}