|
@ -66,14 +66,14 @@ public class IcTripReportRecordDTO implements Serializable { |
|
|
* 姓名 |
|
|
* 姓名 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(15) |
|
|
@ColumnWidth(15) |
|
|
@ExcelProperty(value = "姓名", order = 1) |
|
|
@ExcelProperty(value = "姓名") |
|
|
private String name; |
|
|
private String name; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 手机号 |
|
|
* 手机号 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(15) |
|
|
@ColumnWidth(15) |
|
|
@ExcelProperty(value = "手机号",order = 3) |
|
|
@ExcelProperty(value = "手机号") |
|
|
private String mobile; |
|
|
private String mobile; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -85,7 +85,7 @@ public class IcTripReportRecordDTO implements Serializable { |
|
|
* 身份证号 |
|
|
* 身份证号 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(22) |
|
|
@ColumnWidth(22) |
|
|
@ExcelProperty(value = "证件号",order = 2) |
|
|
@ExcelProperty(value = "证件号") |
|
|
private String idCard; |
|
|
private String idCard; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -121,14 +121,14 @@ public class IcTripReportRecordDTO implements Serializable { |
|
|
* 现居地名称eg:山东省青岛市黄岛区玫瑰山路社区 |
|
|
* 现居地名称eg:山东省青岛市黄岛区玫瑰山路社区 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(50) |
|
|
@ColumnWidth(50) |
|
|
@ExcelProperty(value = "现居地",order = 4) |
|
|
@ExcelProperty(value = "现居地") |
|
|
private String presentAddress; |
|
|
private String presentAddress; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 详细地址 |
|
|
* 详细地址 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(35) |
|
|
@ColumnWidth(35) |
|
|
@ExcelProperty(value = "现居地详细地址",order = 5) |
|
|
@ExcelProperty(value = "现居地详细地址") |
|
|
private String detailAddress; |
|
|
private String detailAddress; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -147,14 +147,14 @@ public class IcTripReportRecordDTO implements Serializable { |
|
|
* 来源地区地址 |
|
|
* 来源地区地址 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(50) |
|
|
@ColumnWidth(50) |
|
|
@ExcelProperty(value = "来自地区",order = 6) |
|
|
@ExcelProperty(value = "来自地区") |
|
|
private String sourceAddress; |
|
|
private String sourceAddress; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 到达日期 |
|
|
* 到达日期 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(25) |
|
|
@ColumnWidth(25) |
|
|
@ExcelProperty(value = "来到本地时间",order = 8) |
|
|
@ExcelProperty(value = "来到本地时间") |
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
private String arriveDate; |
|
|
private String arriveDate; |
|
|
|
|
|
|
|
@ -162,7 +162,7 @@ public class IcTripReportRecordDTO implements Serializable { |
|
|
* 离开日期 |
|
|
* 离开日期 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(25) |
|
|
@ColumnWidth(25) |
|
|
@ExcelProperty(value = "离开本地时间",order = 13) |
|
|
@ExcelProperty(value = "离开本地时间") |
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
private String leaveDate; |
|
|
private String leaveDate; |
|
|
|
|
|
|
|
@ -178,7 +178,7 @@ public class IcTripReportRecordDTO implements Serializable { |
|
|
* 备注信息 |
|
|
* 备注信息 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(100) |
|
|
@ColumnWidth(100) |
|
|
@ExcelProperty(value = "备注",order = 14) |
|
|
@ExcelProperty(value = "备注") |
|
|
private String remark; |
|
|
private String remark; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -237,112 +237,127 @@ public class IcTripReportRecordDTO implements Serializable { |
|
|
/** |
|
|
/** |
|
|
* 交通方式,来源字典表(traffic_type) |
|
|
* 交通方式,来源字典表(traffic_type) |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String trafficType; |
|
|
private String trafficType; |
|
|
/** |
|
|
/** |
|
|
* 交通方式-中国字 |
|
|
* 交通方式-中国字 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(50) |
|
|
@ExcelIgnore |
|
|
@ExcelProperty(value = "返回方式",order = 9) |
|
|
|
|
|
private String trafficTypeName; |
|
|
private String trafficTypeName; |
|
|
/** |
|
|
/** |
|
|
* 其他返回方式,交通方式为其他时此列需要有值 |
|
|
* 其他返回方式,交通方式为其他时此列需要有值 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(50) |
|
|
@ExcelIgnore |
|
|
@ExcelProperty(value = "其他返回方式",order = 10) |
|
|
|
|
|
private String trafficTypeExplain; |
|
|
private String trafficTypeExplain; |
|
|
/** |
|
|
/** |
|
|
* 来自地区详细地址 source_address字段的说明 |
|
|
* 来自地区详细地址 source_address字段的说明 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(25) |
|
|
@ExcelIgnore |
|
|
@ExcelProperty(value = "来自地区详细地址",order = 7) |
|
|
|
|
|
private String sourceDetailAddress; |
|
|
private String sourceDetailAddress; |
|
|
/** |
|
|
/** |
|
|
* 疫苗接种针次 (0 1 2 3)【小寨子】 |
|
|
* 疫苗接种针次 (0 1 2 3)【小寨子】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String vaccineNum; |
|
|
private String vaccineNum; |
|
|
/** |
|
|
/** |
|
|
* 疫苗接种针次 -中国字(0针 1针 2针 3针) |
|
|
* 疫苗接种针次 -中国字(0针 1针 2针 3针) |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(50) |
|
|
@ExcelIgnore |
|
|
@ExcelProperty(value = "疫苗接种针次",order = 12) |
|
|
|
|
|
private String vaccineNumName; |
|
|
private String vaccineNumName; |
|
|
/** |
|
|
/** |
|
|
* 是否有48小时核算记录 0:否 1:是 【小寨子】 |
|
|
* 是否有48小时核算记录 0:否 1:是 【小寨子】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String isNatRecord; |
|
|
private String isNatRecord; |
|
|
/** |
|
|
/** |
|
|
* 是否有48小时核算记录 0:否 1:是 【小寨子】-中国字 |
|
|
* 是否有48小时核算记录 0:否 1:是 【小寨子】-中国字 |
|
|
*/ |
|
|
*/ |
|
|
@ColumnWidth(50) |
|
|
@ExcelIgnore |
|
|
@ExcelProperty(value = "48小时核酸检测",order = 11) |
|
|
|
|
|
private String isNatRecordName; |
|
|
private String isNatRecordName; |
|
|
/** |
|
|
/** |
|
|
* 户籍地 【磐石】 |
|
|
* 户籍地 【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String registeredResidence; |
|
|
private String registeredResidence; |
|
|
/** |
|
|
/** |
|
|
* 年龄【磐石】 |
|
|
* 年龄【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private int age; |
|
|
private int age; |
|
|
/** |
|
|
/** |
|
|
* 来曹事由【磐石】 |
|
|
* 来曹事由【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String describeContent; |
|
|
private String describeContent; |
|
|
/** |
|
|
/** |
|
|
* 48小时核算检查结果(0:阴性 1:阳性)【磐石】 |
|
|
* 48小时核算检查结果(0:阴性 1:阳性)【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String natOutcome; |
|
|
private String natOutcome; |
|
|
/** |
|
|
/** |
|
|
* 48小时核算检查结果(阴性 阳性)【磐石】-中国字 |
|
|
* 48小时核算检查结果(阴性 阳性)【磐石】-中国字 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String natOutcomeName; |
|
|
private String natOutcomeName; |
|
|
/** |
|
|
/** |
|
|
* 7天内旅居史情况,字典表(sojourn_history)【磐石】 |
|
|
* 7天内旅居史情况,字典表(sojourn_history)【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String sojournHistory; |
|
|
private String sojournHistory; |
|
|
/** |
|
|
/** |
|
|
* 7天内旅居史情况,字典表(sojourn_history)【磐石】-中国字 |
|
|
* 7天内旅居史情况,字典表(sojourn_history)【磐石】-中国字 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String sojournHistoryName; |
|
|
private String sojournHistoryName; |
|
|
/** |
|
|
/** |
|
|
* 隔离状态,字典表(isolate_type)【磐石】 |
|
|
* 隔离状态,字典表(isolate_type)【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String isolateType; |
|
|
private String isolateType; |
|
|
/** |
|
|
/** |
|
|
* 隔离状态,字典表(isolate_type)【磐石】-中国字 |
|
|
* 隔离状态,字典表(isolate_type)【磐石】-中国字 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String isolateTypeName; |
|
|
private String isolateTypeName; |
|
|
/** |
|
|
/** |
|
|
* 是否落实"落地检" 0:否 1:是【磐石】 |
|
|
* 是否落实"落地检" 0:否 1:是【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String isArriveCheck; |
|
|
private String isArriveCheck; |
|
|
/** |
|
|
/** |
|
|
* 是否落实"落地检" 0:否 1:是【磐石】-中国字 |
|
|
* 是否落实"落地检" 0:否 1:是【磐石】-中国字 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String isArriveCheckName; |
|
|
private String isArriveCheckName; |
|
|
/** |
|
|
/** |
|
|
* 是否达到曹县 0:否 1:是【磐石】 |
|
|
* 是否达到曹县 0:否 1:是【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String isArrive; |
|
|
private String isArrive; |
|
|
/** |
|
|
/** |
|
|
* 是否达到曹县 0:否 1:是【磐石】-中国字 |
|
|
* 是否达到曹县 0:否 1:是【磐石】-中国字 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String isArriveName; |
|
|
private String isArriveName; |
|
|
/** |
|
|
/** |
|
|
* 上报时间【磐石】 |
|
|
* 上报时间【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
private String reportingTime; |
|
|
private String reportingTime; |
|
|
/** |
|
|
/** |
|
|
* 管控措施【磐石】 |
|
|
* 管控措施【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String controlMeasures; |
|
|
private String controlMeasures; |
|
|
/** |
|
|
/** |
|
|
* 行程记录类型,字典表(trip_data_type)【磐石】 |
|
|
* 行程记录类型,字典表(trip_data_type)【磐石】 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String tripDataType; |
|
|
private String tripDataType; |
|
|
/** |
|
|
/** |
|
|
* 行程记录类型,字典表(trip_data_type)【磐石】-中国字 |
|
|
* 行程记录类型,字典表(trip_data_type)【磐石】-中国字 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@ExcelIgnore |
|
|
private String tripDataTypeName; |
|
|
private String tripDataTypeName; |
|
|
} |
|
|
} |
|
|