Browse Source

居民信息同步-添加疫苗接种详细信息DTO

master
wanggongfeng 3 years ago
parent
commit
8ec945ba3e
  1. 13
      epmet-user/epmet-user-client/src/main/java/com/epmet/dto/IcResiUserDTO.java
  2. 46
      epmet-user/epmet-user-client/src/main/java/com/epmet/dto/VaccineLogDetailDTO.java

13
epmet-user/epmet-user-client/src/main/java/com/epmet/dto/IcResiUserDTO.java

@ -21,6 +21,7 @@ import lombok.Data;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
@ -45,12 +46,12 @@ public class IcResiUserDTO implements Serializable {
private String customerId;
/**
*
*
*/
private String agencyId;
/**
*
*
*/
private String pids;
@ -505,6 +506,12 @@ public class IcResiUserDTO implements Serializable {
*/
private Date updatedTime;
// 租房审核数据同步使用
/**
* 疫苗接种记录
*/
private List<VaccineLogDetailDTO> vaccineLog;
/**
* 预留字段1
*/
@ -555,4 +562,4 @@ public class IcResiUserDTO implements Serializable {
*/
private String field10;
}
}

46
epmet-user/epmet-user-client/src/main/java/com/epmet/dto/VaccineLogDetailDTO.java

@ -0,0 +1,46 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.epmet.dto;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* 疫苗接种记录
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2021-10-26
*/
@Data
public class VaccineLogDetailDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 接种时间
*/
private String vacTime;
/**
* 接种地点
*/
private String vacSite;
}
Loading…
Cancel
Save