wjc
2025-04-23 e6a0ff5475e271a6b126ab27de6cf9f230b67512
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.hdl.photovoltaic.ui.bean;
 
import java.io.Serializable;
 
public class StaffBean implements Serializable {
 
    private String userRightType;//权限类型(MANAGER:公司管理员;USER:普通员工)
    private String userId;//用户ID
    private String userName;//用户名称
    private String userPhone;//用户手机号
    private String userEmail;//用户邮箱
    private int userSex;//用户性别(1:男,2:女)
 
 
    public String getUserRightType() {
        return userRightType == null ? "" : userRightType;
    }
 
    public void setUserRightType(String userRightType) {
        this.userRightType = userRightType;
    }
 
    public String getUserId() {
        return userId == null ? "" : userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public String getUserName() {
        return userName == null ? "" : userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getUserPhone() {
        return userPhone == null ? "" : userPhone;
    }
 
    public void setUserPhone(String userPhone) {
        this.userPhone = userPhone;
    }
 
    public String getUserEmail() {
        return userEmail == null ? "" : userEmail;
    }
 
    public void setUserEmail(String userEmail) {
        this.userEmail = userEmail;
    }
 
    public int getUserSex() {
        return userSex;
    }
 
    public void setUserSex(int userSex) {
        this.userSex = userSex;
    }
}