wjc
6 天以前 81c82b73226fa1cc426cc6204b0ac390d00e70f7
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;
    }
}