wjc
2024-12-10 3ccff7173fb73322f7785d8eaedc90a1b5d8765d
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;
    }
}