派生自 projectDept/qhighschool

胡仁荣
2022-10-31 fe7381d6e8ec1f427408de0297ac7f41533202f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.qxueyou.scc.exercise.model;
 
 
/**
 * Á·Ï°Ã¿µÀÌâÄ¿µÄͳ¼ÆÐÅÏ¢VO
 * @author zhiyong
 *
 */
public class ExerciseItemStatis {
    // Á·Ï°id
    private String exerciseId;
    // Í³¼Æ×ܸöÊý
    private int allCount;
    // ÕýÈ·¸öÊý
    private int correctCount;
 
    public String getExerciseId() {
        return exerciseId;
    }
 
    public void setExerciseId(String exerciseId) {
        this.exerciseId = exerciseId;
    }
 
    public int getAllCount() {
        return allCount;
    }
 
    public void setAllCount(int allCount) {
        this.allCount = allCount;
    }
 
    public int getCorrectCount() {
        return correctCount;
    }
 
    public void setCorrectCount(int correctCount) {
        this.correctCount = correctCount;
    }
 
}