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.
99 lines
1.6 KiB
99 lines
1.6 KiB
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;
|
|
|
|
/**
|
|
* 房屋状态与ic_house表的RENT_FLAG一致取值1:出租 0:自住 2:闲置 3:未售出
|
|
*/
|
|
private String houseType;
|
|
|
|
/**
|
|
* 户主姓名
|
|
*/
|
|
private String houseHolderName;
|
|
|
|
/**
|
|
* 居住成员人数
|
|
*/
|
|
private Integer totalResi;
|
|
private String villageName;
|
|
private String buildName;
|
|
private String unitName;
|
|
private String homeName;
|
|
|
|
/**
|
|
* 审核状态:0待审核 1未通过 2已通过
|
|
*/
|
|
private String checkState;
|
|
|
|
/**
|
|
* 审核原因
|
|
*/
|
|
private String checkReason;
|
|
}
|
|
|