package com.epmet.entity; import com.baomidou.mybatisplus.annotation.TableName; import com.epmet.commons.mybatis.entity.BaseEpmetEntity; import lombok.Data; import lombok.EqualsAndHashCode; import java.util.Date; /** * 合同表 * * @author generator generator@elink-cn.com * @since v1.0.0 2022-05-06 */ @Data @EqualsAndHashCode(callSuper=false) @TableName("pli_change_relocation") public class ChangeRelocationEntity extends BaseEpmetEntity { private static final long serialVersionUID = 1L; /** * 姓名 */ private String name; /** * 性别 */ private String gender; /** * 年龄 */ private String age; /** * 组织PID */ private String pid; /** * 组织ID */ private String agencyId; /** * 组织名 */ private String agencyName; /** * 房屋小区ID */ private String villageId; /** * 房屋小区 */ private String villageName; /** * 楼号ID */ private String buildId; /** * 楼号 */ private String buildName; /** * 单元ID */ private String unitId; /** * 单元 */ private String unitName; /** * 房屋ID */ private String homeId; /** * 房屋 */ private String homeName; /** * 外迁详细地址 */ private String address; /** * 操作类型【客户外out,客户内in】 */ private String type; /** * 原房主姓名 */ private String ownerName; /** * 原网格信息 */ private String oldDept; /** * 原房屋信息 */ private String oldAddress; /** * 原房间号 */ private String oldHome; /** * 浅出原因 */ private String reason; /** * 客户ID */ private String customerId; /** * 迁出时间 */ private Date outOfTime; /** * 身份证号 */ private String idCard; /** * 手机号 */ private String mobile; /** * epmet用户主键 */ private String icUserId; }