package com.sict.data.dto; import lombok.Data; import java.util.List; /** * @description 胃镜检查结果统计 * * @author Jxy * @date Create in 14:34 2019/10/18 */ @Data public class GastroscopyDTO { /** * 胃镜检查总人次 */ private Integer gastroscopyTotal; /** * 计划胃镜检查人次 */ private Integer gastroscopyPlan; /** * 实际胃镜检查人次 */ private Integer gastroscopyActual; /** * 胃镜精检总人次 */ private Integer gastroscopyDetail; /** * 早癌患者总数 */ private Integer earlyCancer; /** * 各省份胃镜检查结果统计集合 */ private List dtoList; }