7 changed files with 306 additions and 15 deletions
@ -0,0 +1,74 @@ |
|||||
|
package com.epmet.dto.result.resi; |
||||
|
|
||||
|
import com.alibaba.excel.annotation.ExcelIgnore; |
||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description 烟台居民画像,居民列表 |
||||
|
* @Author yzm |
||||
|
* @Date 2023/4/12 10:10 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ResiPortrayalDetailDTO { |
||||
|
/** |
||||
|
* 居民id |
||||
|
*/ |
||||
|
@ExcelIgnore |
||||
|
private String icResiUserId; |
||||
|
/** |
||||
|
* 姓名 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "姓名") |
||||
|
@ColumnWidth(25) |
||||
|
private String name; |
||||
|
/** |
||||
|
* 手机号 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "手机号") |
||||
|
@ColumnWidth(25) |
||||
|
private String mobile; |
||||
|
/** |
||||
|
* 性别:1男;2女;0未知 |
||||
|
*/ |
||||
|
@ExcelIgnore |
||||
|
private String gender; |
||||
|
/** |
||||
|
* 性别名称 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "性别") |
||||
|
@ColumnWidth(25) |
||||
|
private String genderName; |
||||
|
/** |
||||
|
* 身份证 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "身份证号") |
||||
|
@ColumnWidth(25) |
||||
|
private String idCard; |
||||
|
|
||||
|
@ExcelProperty(value = "出生日期") |
||||
|
@ColumnWidth(25) |
||||
|
private String birthday; |
||||
|
|
||||
|
/** |
||||
|
* 年龄 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "年龄") |
||||
|
@ColumnWidth(10) |
||||
|
private Integer age; |
||||
|
/** |
||||
|
* 学历key |
||||
|
*/ |
||||
|
@ExcelIgnore |
||||
|
private String educationCode; |
||||
|
/** |
||||
|
* 学历 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "学历") |
||||
|
@ColumnWidth(25) |
||||
|
private String educationName; |
||||
|
|
||||
|
|
||||
|
} |
||||
|
|
Loading…
Reference in new issue