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
42
43
package com.rongyichuang.review.dto.response;
 
/**
 * 评审统计响应
 */
public class ReviewStatisticsResponse {
    
    private int unReviewedCount;
    private int reviewedCount;
    private int studentUnReviewedCount;
    
    public ReviewStatisticsResponse() {}
    
    public ReviewStatisticsResponse(int unReviewedCount, int reviewedCount, int studentUnReviewedCount) {
        this.unReviewedCount = unReviewedCount;
        this.reviewedCount = reviewedCount;
        this.studentUnReviewedCount = studentUnReviewedCount;
    }
    
    public int getUnReviewedCount() {
        return unReviewedCount;
    }
    
    public void setUnReviewedCount(int unReviewedCount) {
        this.unReviewedCount = unReviewedCount;
    }
    
    public int getReviewedCount() {
        return reviewedCount;
    }
    
    public void setReviewedCount(int reviewedCount) {
        this.reviewedCount = reviewedCount;
    }
    
    public int getStudentUnReviewedCount() {
        return studentUnReviewedCount;
    }
    
    public void setStudentUnReviewedCount(int studentUnReviewedCount) {
        this.studentUnReviewedCount = studentUnReviewedCount;
    }
}