8 changed files with 224 additions and 2 deletions
@ -0,0 +1,16 @@ |
|||
package com.epmet.opendata.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
@Data |
|||
public class CaRentalDetailsFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 5574325462597735500L; |
|||
|
|||
/** |
|||
* 出租房id |
|||
*/ |
|||
private String rentalId; |
|||
} |
@ -0,0 +1,128 @@ |
|||
package com.epmet.opendata.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
|
|||
@Data |
|||
public class CaRentalDetailsResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 163050940482300773L; |
|||
|
|||
/** |
|||
* 出租房ID |
|||
*/ |
|||
private Long rentalId; |
|||
|
|||
/** |
|||
* 网格ID |
|||
*/ |
|||
private Long gridId; |
|||
|
|||
/** |
|||
* 房屋ID |
|||
*/ |
|||
private Long houseId; |
|||
|
|||
/** |
|||
* 房屋编号 |
|||
*/ |
|||
private String houseName; |
|||
|
|||
/** |
|||
* 房屋地址 |
|||
*/ |
|||
private String houseAddress; |
|||
|
|||
/** |
|||
* 建筑用途 |
|||
*/ |
|||
private String houseUse; |
|||
|
|||
/** |
|||
* 建筑面积(平方米) |
|||
*/ |
|||
private BigDecimal houseArea; |
|||
|
|||
/** |
|||
* 证件代码 |
|||
*/ |
|||
private String idType; |
|||
|
|||
/** |
|||
* 证件号码 |
|||
*/ |
|||
private String idCard; |
|||
|
|||
/** |
|||
* 房主姓名 |
|||
*/ |
|||
private String residentName; |
|||
|
|||
/** |
|||
* 房主联系方式 |
|||
*/ |
|||
private String telephone; |
|||
|
|||
/** |
|||
* 房主现居详址 |
|||
*/ |
|||
private String curliveAddress; |
|||
|
|||
/** |
|||
* 出租用途 |
|||
*/ |
|||
private String rentUse; |
|||
|
|||
/** |
|||
* 隐患类型 |
|||
*/ |
|||
private String troubleType; |
|||
|
|||
/** |
|||
* 承租人ID |
|||
*/ |
|||
private Long renterId; |
|||
|
|||
/** |
|||
* 承租人公民身份证号码 |
|||
*/ |
|||
private String renterCardNumber; |
|||
|
|||
/** |
|||
* 承租人证件类型 |
|||
*/ |
|||
private Long renterCardType; |
|||
|
|||
/** |
|||
* 承租人姓名 |
|||
*/ |
|||
private String renterName; |
|||
|
|||
/** |
|||
* 承租人联系方式 |
|||
*/ |
|||
private String renterPhone; |
|||
|
|||
/** |
|||
* 经度 |
|||
*/ |
|||
private BigDecimal longitude; |
|||
|
|||
/** |
|||
* 纬度 |
|||
*/ |
|||
private BigDecimal latitude; |
|||
|
|||
/** |
|||
* 标绘状态 |
|||
*/ |
|||
private String pointStatus; |
|||
|
|||
/** |
|||
* 数据来源 |
|||
*/ |
|||
private String platCode; |
|||
|
|||
} |
Loading…
Reference in new issue