Browse Source

小程序新增增加入参

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

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

@ -257,7 +257,7 @@ public class IcTripReportRecordDTO implements Serializable {
/** /**
* 年龄磐石 * 年龄磐石
*/ */
private String age; private int age;
/** /**
* 来曹事由磐石 * 来曹事由磐石
*/ */

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

@ -176,5 +176,62 @@ public class IcTripReportFormDTO implements Serializable {
*/ */
private String content = ""; private String content = "";
/**
* 交通方式来源字典表(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 int 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;
} }

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

@ -138,7 +138,7 @@ public class IcTripReportRecordEntity extends BaseEpmetEntity {
/** /**
* 年龄磐石 * 年龄磐石
*/ */
private String age; private int age;
/** /**
* 来曹事由磐石 * 来曹事由磐石
*/ */

Loading…
Cancel
Save