| package com.panzhihua.common.model.vos.vaccines; | 
|   | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @auther lyq | 
|  * @describe 疫苗接种记录信息 | 
|  */ | 
| @Data | 
| @ApiModel("疫苗接种记录信息") | 
| public class VaccinesUserInoculationByAppVO { | 
|   | 
|     @ApiModelProperty("接种记录id") | 
|     private Long id; | 
|   | 
|     @ApiModelProperty("接种疫苗类型") | 
|     private String vaccines; | 
|   | 
|     @ApiModelProperty("受种人") | 
|     private String name; | 
|   | 
|     @ApiModelProperty("接种日期") | 
|     @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") | 
|     private Date inoculationAt; | 
|   | 
|     @ApiModelProperty("疫苗批号") | 
|     private String vaccinesCode; | 
|   | 
|     @ApiModelProperty("医疗机构") | 
|     private String medicalInstitution; | 
|   | 
|     @ApiModelProperty("剂次") | 
|     private String dosage; | 
|   | 
| } |