app安全教育完成
This commit is contained in:
@ -59,7 +59,7 @@ public class WgzQuestionSave implements Serializable {
|
||||
/** 得分(当前题) */
|
||||
@Excel(name = "得分" , readConverterExp = "当=前题")
|
||||
@ApiModelProperty("得分(当前题)")
|
||||
private Long score;
|
||||
private Double score;
|
||||
|
||||
/** 签名路径 */
|
||||
@Excel(name = "签名路径")
|
||||
@ -74,7 +74,7 @@ public class WgzQuestionSave implements Serializable {
|
||||
/** 最大超时时间(单位/分钟) */
|
||||
@Excel(name = "最大超时时间" , readConverterExp = "单=位/分钟")
|
||||
@ApiModelProperty("最大超时时间(单位/分钟)")
|
||||
private Long timeOut;
|
||||
private Integer timeOut;
|
||||
|
||||
/** 及格线/总分(格式:60,100) */
|
||||
@Excel(name = "及格线/总分" , readConverterExp = "格=式:60,100")
|
||||
@ -84,7 +84,7 @@ public class WgzQuestionSave implements Serializable {
|
||||
/** 删除标志(0代表存在 2代表删除) */
|
||||
@Excel(name = "删除标志" , readConverterExp = "0=代表存在,2=代表删除")
|
||||
@ApiModelProperty("删除标志(0代表存在 2代表删除)")
|
||||
@TableLogic
|
||||
// @TableLogic
|
||||
private String delFlag;
|
||||
|
||||
/** 创建者 */
|
||||
|
@ -69,12 +69,12 @@ public class WgzQuestionsConfiguration implements Serializable {
|
||||
/** 满分 */
|
||||
@Excel(name = "满分")
|
||||
@ApiModelProperty("满分")
|
||||
private Long fullMark;
|
||||
private Double fullMark;
|
||||
|
||||
/** 及格线 */
|
||||
@Excel(name = "及格线")
|
||||
@ApiModelProperty("及格线")
|
||||
private Long passingScore;
|
||||
private Double passingScore;
|
||||
|
||||
/** 答题最大时间(单位/分钟) */
|
||||
@Excel(name = "答题最大时间" , readConverterExp = "单=位/分钟")
|
||||
|
Reference in New Issue
Block a user