123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.leeroa.dydb.datasource.qiyu.dto;
- import com.michael.docs.annotations.ApiField;
- import com.michael.poi.annotation.Col;
- import com.michael.poi.annotation.ImportConfig;
- import com.michael.poi.core.DTO;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * @author Michael
- */
- @Getter
- @Setter
- @ImportConfig(file = "", startRow = 1)
- public class DataQiYuUpDTO implements DTO {
- // 小区名称
- @Col(index = 0)
- private String houses;
- // 城市名称
- @Col(index = 1)
- private String cityName;
- // 区域名称
- @Col(index = 2)
- private String areaName;
- // 地址
- @Col(index = 3)
- private String description;
- // 建筑面积
- @Col(index = 4)
- private Double buildArea;
- // 挂牌单价
- @Col(index = 5)
- private Double price;
- // 挂牌日期
- @Col(index = 7)
- private String upDateStr;
- // 户型
- @Col(index = 8)
- private String roomType;
- // 楼层
- @Col(index = 9)
- private String floor;
- // 总楼层
- @Col(index = 10)
- private String floorInfo;
- // 建筑年代
- @Col(index = 11)
- private String buildYearStr;
- // 装修
- @Col(index = 12)
- private String decoration;
- // 朝向
- @Col(index = 13)
- private String orientation;
- // 百度经度
- @Col(index = 14)
- private String longitude;
- // 百度维度
- @Col(index = 15)
- private String latitude;
- @ApiField("房屋用途")
- @Col(index = 16)
- private String usages;
- @ApiField("建筑结构")
- @Col(index = 17)
- private String structure;
- }
|