You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.epmet.entity;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 居民信息采集表
|
|
|
|
*
|
|
|
|
* @author generator generator@elink-cn.com
|
|
|
|
* @since v1.0.0 2022-03-18
|
|
|
|
*/
|
|
|
|
@Data
|
|
|
|
@EqualsAndHashCode(callSuper=false)
|
|
|
|
@TableName("ic_resi_collect")
|
|
|
|
public class IcResiCollectEntity extends BaseEpmetEntity {
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 客户Id customer.id
|
|
|
|
*/
|
|
|
|
private String customerId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 内部:internal;外部:external
|
|
|
|
*/
|
|
|
|
private String origin;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 网格ID
|
|
|
|
*/
|
|
|
|
private String gridId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 组织Id
|
|
|
|
*/
|
|
|
|
private String agencyId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 组织的pids
|
|
|
|
*/
|
|
|
|
private String pids;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 所属小区ID
|
|
|
|
*/
|
|
|
|
private String villageId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 所属楼宇Id
|
|
|
|
*/
|
|
|
|
private String buildId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 单元id
|
|
|
|
*/
|
|
|
|
private String unitId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 所属家庭Id
|
|
|
|
*/
|
|
|
|
private String homeId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 详细地址
|
|
|
|
*/
|
|
|
|
private String address;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 1自由0租住
|
|
|
|
*/
|
|
|
|
private Integer houseType;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 户主姓名
|
|
|
|
*/
|
|
|
|
private String houseHolderName;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 居住成员人数
|
|
|
|
*/
|
|
|
|
private Integer totalResi;
|
|
|
|
|
|
|
|
}
|