package com.ruoyi.hezhi.domain; import com.fasterxml.jackson.annotation.JsonFormat; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; import lombok.Getter; import lombok.Setter; import lombok.ToString; import java.math.BigDecimal; import java.util.Date; /** * 模拟考试题目对象 tb_exam_subject_simulate * * @author ruoyi * @date 2024-11-08 */ @Getter @Setter @ToString public class TbExamSubjectSimulate extends BaseEntity { private static final long serialVersionUID = 1L; /** 模拟考试题目主键ID */ private Long examSubjectSimulateId; /** 题库分类ID */ @Excel(name = "题库分类ID") private Long subjectWarehouseClassId; /** 考试题目ID */ @Excel(name = "考试题目ID") private Long examSubjectId; /** 考试题目编号 */ @Excel(name = "考试题目编号") private String examSubjectNo; /** 分数 */ @Excel(name = "分数") private BigDecimal score; /** 等级 */ @Excel(name = "等级") private Integer level; /** 类型(0-全部) */ @Excel(name = "类型", readConverterExp = "0=-全部") private Integer type; /** 排序 */ @Excel(name = "排序") private Integer sort; /** 备注 */ @Excel(name = "备注") private String remarks; /** 状态(0-显示,1-隐藏) */ @Excel(name = "状态", readConverterExp = "0=-显示,1-隐藏") private Integer status; /** 发布时间 */ private Date publicationTime; /** 发布人 */ private String publisher; /** 删除时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "删除时间", width = 30, dateFormat = "yyyy-MM-dd") private Date deleteTime; /** 删除人 */ @Excel(name = "删除人") private String deleteBy; /** 删除标记(0-正常,1-删除) */ private Integer delFlag; }