修改班级平均成绩走势图
parent
61cadb4425
commit
98a8355dd5
@ -0,0 +1,54 @@
|
|||||||
|
package com.sztzjy.fund_investment.entity.dto;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author xcj
|
||||||
|
* @Date 2023/12/14
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class ClassAVGScoreVo {
|
||||||
|
// private String id;
|
||||||
|
|
||||||
|
// @ApiModelProperty("学校ID")
|
||||||
|
// private String schoolId;
|
||||||
|
|
||||||
|
// @ApiModelProperty("班级ID")
|
||||||
|
// private String classId;
|
||||||
|
|
||||||
|
@ApiModelProperty("班级名称")
|
||||||
|
private String className;
|
||||||
|
|
||||||
|
// @ApiModelProperty("优秀人数")
|
||||||
|
// private Integer excellentCount;
|
||||||
|
//
|
||||||
|
// @ApiModelProperty("良好人数")
|
||||||
|
// private Integer goodCount;
|
||||||
|
//
|
||||||
|
// @ApiModelProperty("一般人数")
|
||||||
|
// private Integer generalCount;
|
||||||
|
//
|
||||||
|
// @ApiModelProperty("不及格人数")
|
||||||
|
// private Integer failCount;
|
||||||
|
|
||||||
|
// @ApiModelProperty("班级最高分")
|
||||||
|
// private BigDecimal classMaxScore;
|
||||||
|
//
|
||||||
|
// @ApiModelProperty("班级最低分")
|
||||||
|
// private BigDecimal classMinScore;
|
||||||
|
|
||||||
|
@ApiModelProperty("班级平均分")
|
||||||
|
private List<BigDecimal> classAverageScore;
|
||||||
|
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
||||||
|
@ApiModelProperty("最早得分日期")
|
||||||
|
private Date startTime;
|
||||||
|
}
|
Loading…
Reference in New Issue