4 changed files with 105 additions and 9 deletions
@ -0,0 +1,95 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import com.alibaba.excel.annotation.ExcelIgnore; |
||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
|
import com.alibaba.excel.annotation.write.style.HeadStyle; |
||||
|
import com.alibaba.excel.enums.poi.FillPatternTypeEnum; |
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @Description 核酸检测-我的上报记录 |
||||
|
* @Author sun |
||||
|
*/ |
||||
|
@HeadStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 44) |
||||
|
@Data |
||||
|
public class IcVaccineListResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 核酸记录Id |
||||
|
*/ |
||||
|
@ExcelIgnore |
||||
|
private String icNatId; |
||||
|
/** |
||||
|
* 组织Id |
||||
|
*/ |
||||
|
@ExcelIgnore |
||||
|
private String agencyId; |
||||
|
/** |
||||
|
* 居民端小程序的用户id、数字社区的icResiUserId、其他情况无值 |
||||
|
*/ |
||||
|
@ExcelIgnore |
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 居民端小程序的人:resi;数字社区的居民:icresi;未关联上的:other |
||||
|
*/ |
||||
|
@ExcelIgnore |
||||
|
private String userType; |
||||
|
|
||||
|
/** |
||||
|
* 姓名 |
||||
|
*/ |
||||
|
@ColumnWidth(20) |
||||
|
@ExcelProperty(value = "姓名",order = 1) |
||||
|
private String name; |
||||
|
|
||||
|
/** |
||||
|
* 手机号 |
||||
|
*/ |
||||
|
@ColumnWidth(20) |
||||
|
@ExcelProperty(value = "手机号",order = 2) |
||||
|
private String mobile; |
||||
|
|
||||
|
/** |
||||
|
* 身份证号 |
||||
|
*/ |
||||
|
@ColumnWidth(25) |
||||
|
@ExcelProperty(value = "身份证号",order = 3) |
||||
|
private String idCard; |
||||
|
|
||||
|
/** |
||||
|
* 检测时间,yyyy-MM-dd HH:mm |
||||
|
*/ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") |
||||
|
@ColumnWidth(25) |
||||
|
@ExcelProperty(value = "检测时间",order = 4) |
||||
|
private Date natTime; |
||||
|
|
||||
|
/** |
||||
|
* 检测结果 |
||||
|
*/ |
||||
|
@ColumnWidth(20) |
||||
|
@ExcelProperty(value = "检测结果",order = 5) |
||||
|
private String natResult; |
||||
|
|
||||
|
/** |
||||
|
* 是否客户下居民(0:否 1:是) |
||||
|
*/ |
||||
|
@ExcelIgnore |
||||
|
private String isResiUser; |
||||
|
|
||||
|
/** |
||||
|
* 检测地点 |
||||
|
*/ |
||||
|
@ColumnWidth(30) |
||||
|
@ExcelProperty(value = "检测地点",order = 7) |
||||
|
private String natAddress; |
||||
|
|
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue