shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
package com.iplatform.base.pojo;
 
import com.walker.web.DataStatus;
import com.walker.web.param.ParamRequest;
 
public class UserParam extends ParamRequest {
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getPhonenumber() {
        return phonenumber;
    }
 
    public void setPhonenumber(String phonenumber) {
        this.phonenumber = phonenumber;
    }
 
    public int getStatus() {
        return status;
    }
 
    public void setStatus(int status) {
        this.status = status;
    }
 
    public long getDeptId() {
        return this.deptId;
    }
 
    public void setDeptId(long deptId) {
        this.deptId = deptId;
    }
 
    private String userName;
 
    private String phonenumber;
 
//    private int status = DataStatus.CONST_NORMAL;
    private int status = -1;
 
    private long deptId;
}