完成消息待办和补充安全教育接口
This commit is contained in:
@ -0,0 +1,27 @@
|
|||||||
|
package com.ruoyi.wgz.bo.res;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@NoArgsConstructor
|
||||||
|
@Accessors(chain = true)
|
||||||
|
@ApiModel("岗前培训·分数查询返回对象")
|
||||||
|
public class WgzAppUserScoreQuery implements Serializable {
|
||||||
|
@ApiModelProperty("是否及格(1、及格 2、不及格 3、暂无记录)")
|
||||||
|
private String isPass;
|
||||||
|
|
||||||
|
@ApiModelProperty("试卷满分")
|
||||||
|
private float fullMark;
|
||||||
|
|
||||||
|
@ApiModelProperty("及格线")
|
||||||
|
private float passingScore;
|
||||||
|
|
||||||
|
@ApiModelProperty("当前分")
|
||||||
|
private float CurrentMinute;
|
||||||
|
}
|
Reference in New Issue
Block a user