hz-zhhq-app-service/greenH5modul/.svn/pristine/0f/0f768fbdcfb182194b7ea53f3a1...

251 lines
3.5 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.nationalelectric.greenH5.po;
public class GreenRentHouseApply {
/**
* 主键id
*/
private String id;
/**
* 用户id
*/
private String userId;
/**
* 用户姓名
*/
private String userName;
/**
* 性别 1男 2
*/
private String gender;
/**
* 婚姻状况 1已婚 2未婚
*/
private String marriageState;
/**
* 联系电话
*/
private String phone;
/**
* 部门id
*/
private String orgId;
/**
* 部门名称
*/
private String orgName;
/**
* 工作岗位
*/
private String position;
/**
* 申请人类别
*/
private String userType;
/**
* 房屋类别
*/
private String houseType;
/**
* 申请事由
*/
private String applyCause;
/**
* 审核状态
*/
private String examineState;
/**
* 审核批次
*/
private String examineBatch;
/**
* 申请时间
*/
private String applyTime;
/**
* 修改时间
*/
private String updTime;
/**
* 逻辑删除 0 未删除 1 已删除
*/
private String delFlag;
private int pageNum;
private int pageSize;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getMarriageState() {
return marriageState;
}
public void setMarriageState(String marriageState) {
this.marriageState = marriageState;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getOrgId() {
return orgId;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
public String getOrgName() {
return orgName;
}
public void setOrgName(String orgName) {
this.orgName = orgName;
}
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
public String getUserType() {
return userType;
}
public void setUserType(String userType) {
this.userType = userType;
}
public String getHouseType() {
return houseType;
}
public void setHouseType(String houseType) {
this.houseType = houseType;
}
public String getApplyCause() {
return applyCause;
}
public void setApplyCause(String applyCause) {
this.applyCause = applyCause;
}
public String getExamineState() {
return examineState;
}
public void setExamineState(String examineState) {
this.examineState = examineState;
}
public String getApplyTime() {
return applyTime;
}
public void setApplyTime(String applyTime) {
this.applyTime = applyTime;
}
public String getUpdTime() {
return updTime;
}
public void setUpdTime(String updTime) {
this.updTime = updTime;
}
public String getDelFlag() {
return delFlag;
}
public void setDelFlag(String delFlag) {
this.delFlag = delFlag;
}
public String getExamineBatch() {
return examineBatch;
}
public void setExamineBatch(String examineBatch) {
this.examineBatch = examineBatch;
}
public int getPageNum() {
return pageNum;
}
public void setPageNum(int pageNum) {
this.pageNum = pageNum;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
}