From 26a007cce48ecda032dde993556e40a26dd9a254 Mon Sep 17 00:00:00 2001 From: jianjun Date: Wed, 13 Apr 2022 14:58:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E5=8C=BA=E6=88=BF=E5=B1=8B=E6=A5=BC?= =?UTF-8?q?=E5=AE=87=E6=9F=A5=E8=AF=A2=E5=88=97=E8=A1=A8=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E8=BF=94=E5=9B=9E=E5=AF=B9=E8=B1=A1=E4=B8=BA=E5=AE=9E?= =?UTF-8?q?=E4=BD=93=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dto/result/IcHouseListResultDTO.java | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 epmet-module/gov-org/gov-org-client/src/main/java/com/epmet/dto/result/IcHouseListResultDTO.java diff --git a/epmet-module/gov-org/gov-org-client/src/main/java/com/epmet/dto/result/IcHouseListResultDTO.java b/epmet-module/gov-org/gov-org-client/src/main/java/com/epmet/dto/result/IcHouseListResultDTO.java new file mode 100644 index 0000000000..20a500cc85 --- /dev/null +++ b/epmet-module/gov-org/gov-org-client/src/main/java/com/epmet/dto/result/IcHouseListResultDTO.java @@ -0,0 +1,38 @@ + +package com.epmet.dto.result; + +import lombok.Data; + +import java.io.Serializable; + +/** + * desc:房屋列表结果类 + * @author liujianjun + */ +@Data +public class IcHouseListResultDTO implements Serializable { + + + private static final long serialVersionUID = 4963952996288796744L; + + private String houseId; + private String ownerPhone; + private String purpose; + private String doorName; + private String houseType; + private String unitNum; + private String agencyId; + private String buildingId; + private String houseName; + private String buildingName; + private String rentFlag; + private String ownerName; + private String neighborHoodId; + private String purposeKey; + private String neighborHoodName; + private String unitNumKey; + private String ownerIdCard; + private String gridId; + private String houseTypeKey; + private Boolean rentFlagKey; +}