From 6e0180a1e67b18e45a128898bab00e0269dc12d7 Mon Sep 17 00:00:00 2001 From: liuchuang <123456> Date: Thu, 18 Nov 2021 16:02:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E5=B1=8F-=E7=BD=91=E6=A0=BC=E6=B2=BB?= =?UTF-8?q?=E7=90=86-=E5=9C=B0=E5=9B=BE=E9=A1=B9=E7=9B=AE=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E8=BF=94=E5=9B=9E=E9=A1=B9=E7=9B=AE=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...pdcScreenVaccinationDeptStatisticsDTO.java | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/EpdcScreenVaccinationDeptStatisticsDTO.java 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; +}