StudnetAnswerGroupCountVo.java 298 B

1234567891011121314151617
  1. package cn.com.qmth.scancentral.bean.answergroup;
  2. public class StudnetAnswerGroupCountVo {
  3. private Integer totalCount;
  4. public Integer getTotalCount() {
  5. return totalCount;
  6. }
  7. public void setTotalCount(Integer totalCount) {
  8. this.totalCount = totalCount;
  9. }
  10. }