|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.epmet.dto; |
|
|
|
|
|
|
|
import com.epmet.commons.tools.constant.NumConstant; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
@ -19,6 +20,10 @@ public class ImportHouseGeneralDTO implements Serializable { |
|
|
|
*/ |
|
|
|
private String agencyName; |
|
|
|
private String agencyId; |
|
|
|
|
|
|
|
/** |
|
|
|
* agencyId的pid |
|
|
|
*/ |
|
|
|
private String pid; |
|
|
|
private String pids; |
|
|
|
|
|
|
@ -39,9 +44,25 @@ public class ImportHouseGeneralDTO implements Serializable { |
|
|
|
*/ |
|
|
|
private String buildingName; |
|
|
|
private String buildingId; |
|
|
|
|
|
|
|
/** |
|
|
|
* 房屋类型 |
|
|
|
*/ |
|
|
|
private String type; |
|
|
|
private Integer totalUnitNum; |
|
|
|
|
|
|
|
/** |
|
|
|
* 单元数 |
|
|
|
*/ |
|
|
|
private Integer totalUnitNum = NumConstant.ONE; |
|
|
|
|
|
|
|
/** |
|
|
|
* 层数 |
|
|
|
*/ |
|
|
|
private Integer totalFloorNum; |
|
|
|
|
|
|
|
/** |
|
|
|
* 户数 |
|
|
|
*/ |
|
|
|
private Integer totalHouseNum; |
|
|
|
|
|
|
|
/** |
|
|
|