330 lines
4.8 KiB
Plaintext
330 lines
4.8 KiB
Plaintext
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 String contractStartTime;
|
||
|
||
private String contractEndTime;
|
||
|
||
private String photo;
|
||
|
||
private String contractState;
|
||
|
||
private int pageNum;
|
||
private int pageSize;
|
||
|
||
/**
|
||
* 房查照片
|
||
*/
|
||
private String roomInspection;
|
||
|
||
/**
|
||
* null或 1. 未选房 2.已选房 3.已上传合同
|
||
*/
|
||
private String isUpload;
|
||
|
||
/**
|
||
* 房屋ID
|
||
*/
|
||
private String houseId;
|
||
|
||
public String getContractStartTime() {
|
||
return contractStartTime;
|
||
}
|
||
|
||
public void setContractStartTime(String contractStartTime) {
|
||
this.contractStartTime = contractStartTime;
|
||
}
|
||
|
||
public String getContractEndTime() {
|
||
return contractEndTime;
|
||
}
|
||
|
||
public void setContractEndTime(String contractEndTime) {
|
||
this.contractEndTime = contractEndTime;
|
||
}
|
||
|
||
public String getPhoto() {
|
||
return photo;
|
||
}
|
||
|
||
public void setPhoto(String photo) {
|
||
this.photo = photo;
|
||
}
|
||
|
||
public String getContractState() {
|
||
return contractState;
|
||
}
|
||
|
||
public void setContractState(String contractState) {
|
||
this.contractState = contractState;
|
||
}
|
||
|
||
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;
|
||
}
|
||
|
||
public String getRoomInspection() {
|
||
return roomInspection;
|
||
}
|
||
|
||
public void setRoomInspection(String roomInspection) {
|
||
this.roomInspection = roomInspection;
|
||
}
|
||
|
||
public String getIsUpload() {
|
||
return isUpload;
|
||
}
|
||
|
||
public void setIsUpload(String isUpload) {
|
||
this.isUpload = isUpload;
|
||
}
|
||
|
||
public String getHouseId() {
|
||
return houseId;
|
||
}
|
||
|
||
public void setHouseId(String houseId) {
|
||
this.houseId = houseId;
|
||
}
|
||
|
||
|
||
|
||
|
||
|
||
}
|