9 changed files with 191 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||
package com.epmet.dto.form;/** |
|||
* Created by 11 on 2020/3/19. |
|||
*/ |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Description 烟台需求:langchao数据导出 |
|||
* @ClassName HouseListLangchaoFormDTO |
|||
* @Author lc |
|||
* @date 2023.03.19 15:00 |
|||
*/ |
|||
@Data |
|||
public class HouseListLangchaoFormDTO extends PageFormDTO { |
|||
|
|||
private static final long serialVersionUID = -1L; |
|||
|
|||
// 社区名称
|
|||
private String communityName; |
|||
// 街道名称
|
|||
private String streetName; |
|||
|
|||
} |
|||
@ -0,0 +1,61 @@ |
|||
|
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* desc 烟台需求:提供langchao数据 |
|||
* |
|||
* @author liujianjun |
|||
*/ |
|||
@Data |
|||
public class HouseLangchaoListResultDTO implements Serializable { |
|||
|
|||
|
|||
private static final long serialVersionUID = 4963952996288796744L; |
|||
|
|||
private Integer seqNo; |
|||
|
|||
private String areaName; |
|||
|
|||
private String streetName; |
|||
|
|||
private String communityName; |
|||
|
|||
private String type; |
|||
|
|||
private String viliageName; |
|||
|
|||
private String buildingNo; |
|||
|
|||
private String floor; |
|||
|
|||
private String unitNo; |
|||
|
|||
private String houseNo; |
|||
|
|||
private String area; |
|||
|
|||
private String dwellingState; |
|||
|
|||
private String usage; |
|||
|
|||
private String createTime; |
|||
|
|||
private String updateTime; |
|||
|
|||
private String pushTime; |
|||
|
|||
private String operateType; |
|||
|
|||
private String orgKey; |
|||
|
|||
private String custKey; |
|||
|
|||
private String fullName; |
|||
|
|||
|
|||
|
|||
} |
|||
Binary file not shown.
Loading…
Reference in new issue