8 changed files with 136 additions and 2 deletions
@ -1 +1 @@ |
|||
Subproject commit 60b469fb3d9fccb7220f65c3ddbaa412033ecc01 |
|||
Subproject commit 9596cd2ada0a9e7de4bfdc86d85791d71040965b |
@ -0,0 +1,25 @@ |
|||
package com.elink.esua.epdc.vaccine.vim.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 疫苗剂次信息 |
|||
* |
|||
* @author work@yujt.net.cn |
|||
*/ |
|||
@Data |
|||
public class EpdcAppDoseInfoDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 8069426262502587441L; |
|||
|
|||
private Integer vaccinationNum; |
|||
|
|||
private String vaccinationTime; |
|||
|
|||
private String vaccinationSite; |
|||
|
|||
private String vaccinationCompany; |
|||
|
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.elink.esua.epdc.vaccine.vim.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 疫苗接种信息 |
|||
* |
|||
* @author work@yujt.net.cn |
|||
*/ |
|||
@Data |
|||
public class EpdcAppVimInfoResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -1040033718387829191L; |
|||
|
|||
private String idCard; |
|||
|
|||
private String userName; |
|||
|
|||
/** |
|||
* 接种状态 |
|||
*/ |
|||
private String vaccinationState; |
|||
|
|||
private String nextDoseDate; |
|||
|
|||
private List<EpdcAppDoseInfoDTO> vaccinationList; |
|||
} |
Loading…
Reference in new issue