wjc
2024-11-27 f15ce517f0ed2f37526cb1d720ffae107f832f0a
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;
    }
}