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-05-09 */ @Data @EqualsAndHashCode(callSuper=false) @TableName("pli_change_welfare") public class ChangeWelfareEntity extends BaseEpmetEntity { private static final long serialVersionUID = 1L; /** * epmet用户主键 */ private String userId; /** * epmet网格ID */ private String gridId; /** * 姓名 */ private String name; /** * 身份证 */ private String idCard; /** * 手机号 */ private String mobile; /** * 性别 0女 1男 */ private String gender; /** * 类型 */ private String type; /** * 加入时间 */ private String joinDate; /** * 加入原因 */ private String joinReason; /** * 移除时间 */ private String removeDate; /** * 移除原因 */ private String removeReason; /** * 客户ID */ private String customerId; }