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;
|
}
|