package com.java110.dto.rentingPool;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @ClassName FloorDto
|
* @Description 出租流程数据层封装
|
* @Author wuxw
|
* @Date 2019/4/24 8:52
|
* @Version 1.0
|
* add by wuxw 2019/4/24
|
**/
|
public class RentingPoolFlowDto extends PageDto implements Serializable {
|
|
public static final String STATE_SUBMIT = "1001";
|
public static final String STATE_PROXY_TRUE = "2002";
|
public static final String STATE_PROXY_FALSE = "3003";
|
public static final String STATE_CONFIRM_RENTING = "4004"; // 租客确定租房
|
|
|
private String dealTime;
|
private String useName;
|
private String context;
|
private String userTel;
|
private String state;
|
private String stateName;
|
private String userRole;
|
private String communityId;
|
private String flowId;
|
private String rentingId;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
|
public String getDealTime() {
|
return dealTime;
|
}
|
|
public void setDealTime(String dealTime) {
|
this.dealTime = dealTime;
|
}
|
|
public String getUseName() {
|
return useName;
|
}
|
|
public void setUseName(String useName) {
|
this.useName = useName;
|
}
|
|
public String getContext() {
|
return context;
|
}
|
|
public void setContext(String context) {
|
this.context = context;
|
}
|
|
public String getUserTel() {
|
return userTel;
|
}
|
|
public void setUserTel(String userTel) {
|
this.userTel = userTel;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getUserRole() {
|
return userRole;
|
}
|
|
public void setUserRole(String userRole) {
|
this.userRole = userRole;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getFlowId() {
|
return flowId;
|
}
|
|
public void setFlowId(String flowId) {
|
this.flowId = flowId;
|
}
|
|
public String getRentingId() {
|
return rentingId;
|
}
|
|
public void setRentingId(String rentingId) {
|
this.rentingId = rentingId;
|
}
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getStateName() {
|
return stateName;
|
}
|
|
public void setStateName(String stateName) {
|
this.stateName = stateName;
|
}
|
}
|