package com.gkhy.exam.institutionalaccess.model.resp; import lombok.Data; import java.math.BigDecimal; @Data public class ThStatisticRespDTO { private String institutionName; private Integer studentCount; private Integer finishCount; private Integer eaxmStudentCount; private Integer passCount; private BigDecimal passRate; }