package com.ruoyi.study.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author HJL
|
* @version 1.0
|
* @since 2024-06-14 11:24
|
*/
|
@Data
|
public class StudyRecordVO {
|
|
@ApiModelProperty("可获得总积分")
|
private Integer total;
|
|
@ApiModelProperty("已获取积分")
|
private Integer obtainedIntegral;
|
|
|
public StudyRecordVO(Integer total, Integer obtainedIntegral) {
|
this.total = total;
|
this.obtainedIntegral = obtainedIntegral;
|
}
|
}
|