1 changed files with 49 additions and 0 deletions
@ -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; |
|||
} |
Loading…
Reference in new issue