8 changed files with 166 additions and 13 deletions
@ -0,0 +1,110 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.epmet.dto.IcPropertyManagementDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author yzm |
|||
* @Date 2022/9/21 9:19 |
|||
*/ |
|||
@Data |
|||
public class IcNeighborHoodDetailDTO { |
|||
/** |
|||
* 客户id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 小区名称 |
|||
*/ |
|||
private String neighborHoodName; |
|||
|
|||
/** |
|||
* 组织id |
|||
*/ |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 组织名称--新版详情页面用于显示 |
|||
*/ |
|||
private String agencyName; |
|||
|
|||
/** |
|||
* 上级组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 组织的所有上级组织id |
|||
*/ |
|||
private String agencyPids; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 详细地址 |
|||
*/ |
|||
private String address; |
|||
|
|||
/** |
|||
* 备注 |
|||
*/ |
|||
private String remark; |
|||
|
|||
/** |
|||
* 中心点位:经度 |
|||
*/ |
|||
private String longitude; |
|||
|
|||
/** |
|||
* 中心点位:纬度 |
|||
*/ |
|||
private String latitude; |
|||
|
|||
/** |
|||
* 坐标区域 |
|||
*/ |
|||
private String coordinates; |
|||
|
|||
/** |
|||
* 坐标位置 |
|||
*/ |
|||
private String location; |
|||
|
|||
/** |
|||
* 网格名称--新版详情页面用于显示 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 物业名称--新版详情页面用于显示 |
|||
*/ |
|||
private List<IcPropertyManagementDTO> propertyList; |
|||
|
|||
/** |
|||
* 小区编码 |
|||
*/ |
|||
private String coding; |
|||
|
|||
/** |
|||
* 小区系统编码 |
|||
*/ |
|||
private String sysCoding; |
|||
|
|||
/** |
|||
* 实有楼栋数 |
|||
*/ |
|||
private Integer realBuilding; |
|||
|
|||
/** |
|||
* 二维码地址 |
|||
*/ |
|||
private String qrcodeUrl; |
|||
} |
|||
|
Loading…
Reference in new issue