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; } }