烟台政务云平台
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.

77 lines
1.2 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-05-19
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("ic_volunteer_poly")
public class IcVolunteerPolyEntity extends BaseEpmetEntity {
private static final long serialVersionUID = 1L;
/**
* 客户Id customer.id
*/
private String customerId;
/**
* 行政组织 机关ID
*/
private String agencyId;
/**
* 行政组织 机关ID
*/
private String agencyPids;
/**
* 居民端用户id
*/
private String userId;
/**
* 对应的ic_resi_user主表Id
*/
private String icResiUser;
/**
* 居住成员1姓名
*/
private String name;
/**
* 身份证号
*/
private String idCard;
/**
* 手机号
*/
private String mobile;
/**
* 性别
*/
private String gender;
/**
* 经度
*/
private String longitude;
/**
* 纬度
*/
private String latitude;
}