parent
9090ec8dc4
commit
8db276a4aa
@ -0,0 +1,34 @@
|
|||||||
|
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 UserExamCountDTO
|
||||||
|
* @date 2024/8/7
|
||||||
|
* @description 考试统计
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value="考试统计", description="考试统计")
|
||||||
|
public class UserExamCountDTO implements Serializable {
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "总数")
|
||||||
|
private Integer total;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "通过数")
|
||||||
|
private Integer tg;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "未通过数")
|
||||||
|
private Integer wtg;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue