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.
70 lines
1.1 KiB
70 lines
1.1 KiB
|
4 years ago
|
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-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;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 居住成员1姓名
|
||
|
|
*/
|
||
|
|
private String name;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 身份证号
|
||
|
|
*/
|
||
|
|
private String idCard;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 手机号
|
||
|
|
*/
|
||
|
|
private String mobile;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 性别
|
||
|
|
*/
|
||
|
|
private String gender;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 经度
|
||
|
|
*/
|
||
|
|
private String longitude;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 纬度
|
||
|
|
*/
|
||
|
|
private String latitude;
|
||
|
|
|
||
|
|
}
|