package com.panzhihua.common.model.dtos.civil;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
/**
|
* @author zzj
|
*/
|
@Data
|
public class ComActSocialExportVO {
|
/**
|
* 姓名 列: name
|
*/
|
@ExcelProperty(value = "姓名")
|
private String name;
|
/**
|
* 联系电话 列: telephone
|
*/
|
@ExcelProperty(value = "联系电话",index = 4)
|
private String telephone;
|
/**
|
* 性别0女1男 列: gen
|
*/
|
@ExcelProperty(value = "性别",index = 2)
|
private Integer gen;
|
/**
|
* 出生日期 列: birthday
|
*/
|
@ExcelProperty(value = "出生日期",index = 3)
|
private String birthday;
|
/**
|
* 社工证编号 列: social_worker_code
|
*/
|
@ExcelProperty(value = "社工证号码",index = 1)
|
private String socialWorkerCode;
|
|
/**
|
* 所属街道 列: street_id
|
*/
|
@ExcelProperty(value = "所属街道",index = 5)
|
private Long streetId;
|
/**
|
* 所属社区 列: community_id
|
*/
|
@ExcelProperty(value = "所属社区",index = 6)
|
private Long communityId;
|
|
/**
|
* 技能领域 列: skill_field
|
*/
|
@ExcelProperty(value = "技能领域",index = 9)
|
private String skillField;
|
/**
|
* 业务范围 列: business_scope
|
*/
|
@ExcelProperty(value = "业务范围",index = 10)
|
private String businessScope;
|
|
/**
|
* 所属组织ID 列: social_org_id
|
*/
|
@ExcelProperty(value = "所属机构",index = 7)
|
private Long socialOrgId;
|
|
/**
|
* 社工资质 列: social_qua
|
*/
|
@ExcelProperty(value = "社工资质",index = 8)
|
private Long socialQua;
|
}
|