Browse Source

行程上报表增加字段

dev
sunyuchao 3 years ago
parent
commit
c62fb6c8d6
  1. 57
      epmet-user/epmet-user-client/src/main/java/com/epmet/dto/IcTripReportRecordDTO.java
  2. 57
      epmet-user/epmet-user-server/src/main/java/com/epmet/entity/IcTripReportRecordEntity.java

57
epmet-user/epmet-user-client/src/main/java/com/epmet/dto/IcTripReportRecordDTO.java

@ -233,4 +233,61 @@ public class IcTripReportRecordDTO implements Serializable {
@ColumnWidth(25)
@ExcelProperty("核算检测关注名单")
private String heSuanCheckDesc;
/**
* 交通方式来源字典表(traffic_type)
*/
private String trafficType;
/**
* 其他返回方式交通方式为其他时此列需要有值
*/
private String trafficTypeExplain;
/**
* 来源地详细信息 source_address字段的说明
*/
private String sourceDetailAddress;
/**
* 疫苗接种针次 (1针 2针 3针)小寨子
*/
private String vaccineNum;
/**
* 是否有48小时核算记录 0: 1: 小寨子
*/
private String isNatRecord;
/**
* 年龄磐石
*/
private String age;
/**
* 来曹事由磐石
*/
private String describe;
/**
* 48小时核算检查结果(阴性 阳性)磐石
*/
private String natOutcome;
/**
* 7天内旅居史情况字典表(sojourn_history)磐石
*/
private String sojournHistory;
/**
* 隔离状态字典表(isolate_type)磐石
*/
private String isolateType;
/**
* 是否落实"落地检" 0: 1:磐石
*/
private String isArriveCheck;
/**
* 上报时间磐石
*/
private Date reportingTime;
/**
* 管控措施磐石
*/
private String controlMeasures;
/**
* 行程记录类型字典表(trip_data_type)磐石
*/
private String tripDataType;
}

57
epmet-user/epmet-user-server/src/main/java/com/epmet/entity/IcTripReportRecordEntity.java

@ -115,4 +115,61 @@ public class IcTripReportRecordEntity extends BaseEpmetEntity {
*/
private String remark;
/**
* 交通方式来源字典表(traffic_type)
*/
private String trafficType;
/**
* 其他返回方式交通方式为其他时此列需要有值
*/
private String trafficTypeExplain;
/**
* 来源地详细信息 source_address字段的说明
*/
private String sourceDetailAddress;
/**
* 疫苗接种针次 (1针 2针 3针)小寨子
*/
private String vaccineNum;
/**
* 是否有48小时核算记录 0: 1: 小寨子
*/
private String isNatRecord;
/**
* 年龄磐石
*/
private String age;
/**
* 来曹事由磐石
*/
private String describe;
/**
* 48小时核算检查结果(阴性 阳性)磐石
*/
private String natOutcome;
/**
* 7天内旅居史情况字典表(sojourn_history)磐石
*/
private String sojournHistory;
/**
* 隔离状态字典表(isolate_type)磐石
*/
private String isolateType;
/**
* 是否落实"落地检" 0: 1:磐石
*/
private String isArriveCheck;
/**
* 上报时间磐石
*/
private Date reportingTime;
/**
* 管控措施磐石
*/
private String controlMeasures;
/**
* 行程记录类型字典表(trip_data_type)磐石
*/
private String tripDataType;
}

Loading…
Cancel
Save