11 changed files with 247 additions and 3 deletions
Binary file not shown.
@ -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 ResiListLangchaoFormDTO extends PageFormDTO { |
|||
|
|||
private static final long serialVersionUID = -1L; |
|||
|
|||
// 社区名称
|
|||
private String communityName; |
|||
// 街道名称
|
|||
private String streetName; |
|||
|
|||
} |
@ -0,0 +1,115 @@ |
|||
|
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
import org.aspectj.weaver.ast.Not; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
import java.util.Set; |
|||
|
|||
/** |
|||
* desc 烟台需求:提供langchao数据 |
|||
* |
|||
* @author liujianjun |
|||
*/ |
|||
@Data |
|||
public class ResiLangchaoListResultDTO implements Serializable { |
|||
|
|||
|
|||
private static final long serialVersionUID = 4963952996288796744L; |
|||
|
|||
private Integer seqNo; |
|||
|
|||
private String areaName; |
|||
|
|||
private String streetName; |
|||
|
|||
private String communityName; |
|||
|
|||
private String name; |
|||
|
|||
private String idType; |
|||
|
|||
private String idCard; |
|||
|
|||
private String phone; |
|||
|
|||
private String tenement; |
|||
|
|||
private String tag; |
|||
|
|||
private String livingProvince; |
|||
|
|||
private String livingCity; |
|||
|
|||
private String livingArea; |
|||
|
|||
private String livingStreet; |
|||
|
|||
private String livingCommunity; |
|||
|
|||
private String livingViliageName; |
|||
|
|||
private String livingBuildingNo; |
|||
|
|||
private String livingUnitNo; |
|||
|
|||
private String livingHouseNo; |
|||
|
|||
private String livingAddress; |
|||
|
|||
private String isNowLive; |
|||
|
|||
private String role; |
|||
|
|||
private String registerProvince; |
|||
|
|||
private String registerCity; |
|||
|
|||
private String registerArea; |
|||
|
|||
private String registerStreet; |
|||
|
|||
private String registerCommunity; |
|||
|
|||
private String registerViliageName; |
|||
|
|||
private String registerBuildingNo; |
|||
|
|||
private String registerUnitNo; |
|||
|
|||
private String registerHouseNo; |
|||
|
|||
private String registerAddress; |
|||
|
|||
private String householdCategory; |
|||
|
|||
private String householdId; |
|||
|
|||
private String character; |
|||
|
|||
private String politicsStatus; |
|||
|
|||
private String nation; |
|||
|
|||
private String marriage; |
|||
|
|||
private String focusGroups; |
|||
|
|||
private String nationality; |
|||
|
|||
private String remark; |
|||
|
|||
private Date createTime; |
|||
|
|||
private Date updateTime; |
|||
|
|||
private Date pushTime; |
|||
|
|||
private String operateType; |
|||
|
|||
private String orgKey; |
|||
|
|||
private String custKey; |
|||
} |
Binary file not shown.
Loading…
Reference in new issue