diff --git a/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/EpdcScreenVaccinationDeptStatisticsDTO.java b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/EpdcScreenVaccinationDeptStatisticsDTO.java new file mode 100644 index 0000000..b884c30 --- /dev/null +++ b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/EpdcScreenVaccinationDeptStatisticsDTO.java @@ -0,0 +1,49 @@ +package com.elink.esua.epdc.dto.analysis.pc.screen; + +import lombok.Data; + +import java.io.Serializable; + +/** + * @Author:lc + * @Date:2021/11/18 15:59 + */ +@Data +public class EpdcScreenVaccinationDeptStatisticsDTO implements Serializable { + private static final long serialVersionUID = -276785586186467437L; + + /** + * ID + */ + private String id; + + /** + * 社区ID + */ + private Long deptId; + + /** + * 社区名称 + */ + private String deptName; + + /** + * 一针接种完成 + */ + private Integer oneShotCompletedNum; + + /** + * 两针接种完成 + */ + private Integer twoShotCompletedNum; + + /** + * 三针接种完成 + */ + private Integer threeShotCompletedNum; + + /** + * 加强针接种完成 + */ + private Integer steadyShotCompletedNum; +}