|
|
|
|
@ -1,17 +1,18 @@
|
|
|
|
|
package com.ruoyi.szxc.domain;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 小区信息对象 szxc_xq_info
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @author hs
|
|
|
|
|
* @date 2024-03-16
|
|
|
|
|
* @date 2024-03-28
|
|
|
|
|
*/
|
|
|
|
|
public class SzxcXqInfo extends BaseEntity
|
|
|
|
|
{
|
|
|
|
|
@ -20,6 +21,10 @@ public class SzxcXqInfo extends BaseEntity
|
|
|
|
|
/** id */
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
/** 小区名称 */
|
|
|
|
|
@Excel(name = "小区名称")
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
/** 类型(0老旧1新2片区散户) */
|
|
|
|
|
@Excel(name = "类型(0老旧1新2片区散户)")
|
|
|
|
|
private String xqType;
|
|
|
|
|
@ -73,129 +78,138 @@ public class SzxcXqInfo extends BaseEntity
|
|
|
|
|
@Excel(name = "创建者ID")
|
|
|
|
|
private Long userId;
|
|
|
|
|
|
|
|
|
|
public void setId(Long id)
|
|
|
|
|
public void setId(Long id)
|
|
|
|
|
{
|
|
|
|
|
this.id = id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getId()
|
|
|
|
|
public Long getId()
|
|
|
|
|
{
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
public void setXqType(String xqType)
|
|
|
|
|
public void setName(String name)
|
|
|
|
|
{
|
|
|
|
|
this.name = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getName()
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
public void setXqType(String xqType)
|
|
|
|
|
{
|
|
|
|
|
this.xqType = xqType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getXqType()
|
|
|
|
|
public String getXqType()
|
|
|
|
|
{
|
|
|
|
|
return xqType;
|
|
|
|
|
}
|
|
|
|
|
public void setLdNum(Long ldNum)
|
|
|
|
|
public void setLdNum(Long ldNum)
|
|
|
|
|
{
|
|
|
|
|
this.ldNum = ldNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getLdNum()
|
|
|
|
|
public Long getLdNum()
|
|
|
|
|
{
|
|
|
|
|
return ldNum;
|
|
|
|
|
}
|
|
|
|
|
public void setJzArea(String jzArea)
|
|
|
|
|
public void setJzArea(String jzArea)
|
|
|
|
|
{
|
|
|
|
|
this.jzArea = jzArea;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getJzArea()
|
|
|
|
|
public String getJzArea()
|
|
|
|
|
{
|
|
|
|
|
return jzArea;
|
|
|
|
|
}
|
|
|
|
|
public void setZdArea(String zdArea)
|
|
|
|
|
public void setZdArea(String zdArea)
|
|
|
|
|
{
|
|
|
|
|
this.zdArea = zdArea;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getZdArea()
|
|
|
|
|
public String getZdArea()
|
|
|
|
|
{
|
|
|
|
|
return zdArea;
|
|
|
|
|
}
|
|
|
|
|
public void setWyType(String wyType)
|
|
|
|
|
public void setWyType(String wyType)
|
|
|
|
|
{
|
|
|
|
|
this.wyType = wyType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getWyType()
|
|
|
|
|
public String getWyType()
|
|
|
|
|
{
|
|
|
|
|
return wyType;
|
|
|
|
|
}
|
|
|
|
|
public void setWyResponse(String wyResponse)
|
|
|
|
|
public void setWyResponse(String wyResponse)
|
|
|
|
|
{
|
|
|
|
|
this.wyResponse = wyResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getWyResponse()
|
|
|
|
|
public String getWyResponse()
|
|
|
|
|
{
|
|
|
|
|
return wyResponse;
|
|
|
|
|
}
|
|
|
|
|
public void setWyPhone(String wyPhone)
|
|
|
|
|
public void setWyPhone(String wyPhone)
|
|
|
|
|
{
|
|
|
|
|
this.wyPhone = wyPhone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getWyPhone()
|
|
|
|
|
public String getWyPhone()
|
|
|
|
|
{
|
|
|
|
|
return wyPhone;
|
|
|
|
|
}
|
|
|
|
|
public void setXqAddress(String xqAddress)
|
|
|
|
|
public void setXqAddress(String xqAddress)
|
|
|
|
|
{
|
|
|
|
|
this.xqAddress = xqAddress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getXqAddress()
|
|
|
|
|
public String getXqAddress()
|
|
|
|
|
{
|
|
|
|
|
return xqAddress;
|
|
|
|
|
}
|
|
|
|
|
public void setBuildDate(Date buildDate)
|
|
|
|
|
public void setBuildDate(Date buildDate)
|
|
|
|
|
{
|
|
|
|
|
this.buildDate = buildDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getBuildDate()
|
|
|
|
|
public Date getBuildDate()
|
|
|
|
|
{
|
|
|
|
|
return buildDate;
|
|
|
|
|
}
|
|
|
|
|
public void setXqDescribe(String xqDescribe)
|
|
|
|
|
public void setXqDescribe(String xqDescribe)
|
|
|
|
|
{
|
|
|
|
|
this.xqDescribe = xqDescribe;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getXqDescribe()
|
|
|
|
|
public String getXqDescribe()
|
|
|
|
|
{
|
|
|
|
|
return xqDescribe;
|
|
|
|
|
}
|
|
|
|
|
public void setDeptId(Long deptId)
|
|
|
|
|
public void setDeptId(Long deptId)
|
|
|
|
|
{
|
|
|
|
|
this.deptId = deptId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getDeptId()
|
|
|
|
|
public Long getDeptId()
|
|
|
|
|
{
|
|
|
|
|
return deptId;
|
|
|
|
|
}
|
|
|
|
|
public void setDeptName(String deptName)
|
|
|
|
|
public void setDeptName(String deptName)
|
|
|
|
|
{
|
|
|
|
|
this.deptName = deptName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDeptName()
|
|
|
|
|
public String getDeptName()
|
|
|
|
|
{
|
|
|
|
|
return deptName;
|
|
|
|
|
}
|
|
|
|
|
public void setUserId(Long userId)
|
|
|
|
|
public void setUserId(Long userId)
|
|
|
|
|
{
|
|
|
|
|
this.userId = userId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getUserId()
|
|
|
|
|
public Long getUserId()
|
|
|
|
|
{
|
|
|
|
|
return userId;
|
|
|
|
|
}
|
|
|
|
|
@ -203,24 +217,25 @@ public class SzxcXqInfo extends BaseEntity
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
.append("id", getId())
|
|
|
|
|
.append("xqType", getXqType())
|
|
|
|
|
.append("ldNum", getLdNum())
|
|
|
|
|
.append("jzArea", getJzArea())
|
|
|
|
|
.append("zdArea", getZdArea())
|
|
|
|
|
.append("wyType", getWyType())
|
|
|
|
|
.append("wyResponse", getWyResponse())
|
|
|
|
|
.append("wyPhone", getWyPhone())
|
|
|
|
|
.append("xqAddress", getXqAddress())
|
|
|
|
|
.append("buildDate", getBuildDate())
|
|
|
|
|
.append("xqDescribe", getXqDescribe())
|
|
|
|
|
.append("createBy", getCreateBy())
|
|
|
|
|
.append("createTime", getCreateTime())
|
|
|
|
|
.append("updateBy", getUpdateBy())
|
|
|
|
|
.append("updateTime", getUpdateTime())
|
|
|
|
|
.append("deptId", getDeptId())
|
|
|
|
|
.append("deptName", getDeptName())
|
|
|
|
|
.append("userId", getUserId())
|
|
|
|
|
.toString();
|
|
|
|
|
.append("id", getId())
|
|
|
|
|
.append("name", getName())
|
|
|
|
|
.append("xqType", getXqType())
|
|
|
|
|
.append("ldNum", getLdNum())
|
|
|
|
|
.append("jzArea", getJzArea())
|
|
|
|
|
.append("zdArea", getZdArea())
|
|
|
|
|
.append("wyType", getWyType())
|
|
|
|
|
.append("wyResponse", getWyResponse())
|
|
|
|
|
.append("wyPhone", getWyPhone())
|
|
|
|
|
.append("xqAddress", getXqAddress())
|
|
|
|
|
.append("buildDate", getBuildDate())
|
|
|
|
|
.append("xqDescribe", getXqDescribe())
|
|
|
|
|
.append("createBy", getCreateBy())
|
|
|
|
|
.append("createTime", getCreateTime())
|
|
|
|
|
.append("updateBy", getUpdateBy())
|
|
|
|
|
.append("updateTime", getUpdateTime())
|
|
|
|
|
.append("deptId", getDeptId())
|
|
|
|
|
.append("deptName", getDeptName())
|
|
|
|
|
.append("userId", getUserId())
|
|
|
|
|
.toString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|