1234567891011121314151617 |
- package cn.com.qmth.scancentral.bean.answergroup;
- public class StudnetAnswerGroupCountVo {
- private Integer totalCount;
- public Integer getTotalCount() {
- return totalCount;
- }
- public void setTotalCount(Integer totalCount) {
- this.totalCount = totalCount;
- }
- }
|