8 changed files with 216 additions and 100 deletions
@ -0,0 +1,67 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.epmet.commons.tools.constant.NumConstant; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/3/28 14:14 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class VaccinationListResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -4368151917259903449L; |
|||
|
|||
/** |
|||
* 排序 |
|||
*/ |
|||
private Integer sort; |
|||
|
|||
/** |
|||
* 接种针次 |
|||
*/ |
|||
private Integer vaccinationCount; |
|||
|
|||
/** |
|||
* 姓名 |
|||
*/ |
|||
private String name; |
|||
|
|||
/** |
|||
* 电话 |
|||
*/ |
|||
private String mobile; |
|||
|
|||
/** |
|||
* 身份证 |
|||
*/ |
|||
private String idCard; |
|||
|
|||
/** |
|||
* 备注 |
|||
*/ |
|||
private String remark; |
|||
|
|||
/** |
|||
* 原因 |
|||
*/ |
|||
private String reason; |
|||
|
|||
/** |
|||
* 最后一次通知时间 |
|||
*/ |
|||
private String lastInformTime; |
|||
|
|||
public VaccinationListResultDTO() { |
|||
this.vaccinationCount = NumConstant.ZERO; |
|||
this.name = ""; |
|||
this.mobile = ""; |
|||
this.idCard = ""; |
|||
this.remark = ""; |
|||
this.lastInformTime = ""; |
|||
this.reason = ""; |
|||
} |
|||
} |
Loading…
Reference in new issue