parent
001e240b3b
commit
87b98e8959
@ -0,0 +1,36 @@
|
|||||||
|
package com.ruoyi.system.domain.userexam.dto.response;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* packageName com.ruoyi.system.domain.userexam.dto.response
|
||||||
|
*
|
||||||
|
* @author wangxy
|
||||||
|
* @version JDK 8
|
||||||
|
* @className ExamCountDTO
|
||||||
|
* @date 2024/8/7
|
||||||
|
* @description 考试统计
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value="考试统计", description="考试统计")
|
||||||
|
public class ExamCountDTO implements Serializable {
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "考试id")
|
||||||
|
private String examId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "考试名称")
|
||||||
|
private String title;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "总数")
|
||||||
|
private Integer total;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "通过数")
|
||||||
|
private Integer tg;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "未通过数")
|
||||||
|
private Integer wtg;
|
||||||
|
}
|
Loading…
Reference in new issue