| | |
| | | */ |
| | | package org.springblade.modules.exam.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springblade.core.tenant.mp.TenantEntity; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | * @author Chill |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @TableName("blade_notice") |
| | | public class ExamPaper extends TenantEntity { |
| | | @TableName("ksxt_exam") |
| | | public class ExamPaper implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 标题 |
| | | * ID |
| | | */ |
| | | @ApiModelProperty(value = "标题") |
| | | private String title; |
| | | @ApiModelProperty(value = "id") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 通知类型 |
| | | * 考试名称 |
| | | */ |
| | | @ApiModelProperty(value = "通知类型") |
| | | private Integer category; |
| | | private String examName; |
| | | |
| | | /** |
| | | * 发布日期 |
| | | * 考试类型 |
| | | */ |
| | | @ApiModelProperty(value = "发布日期") |
| | | private Date releaseTime; |
| | | private Integer examType; |
| | | |
| | | /** |
| | | * 内容 |
| | | * 注意事项 |
| | | */ |
| | | @ApiModelProperty(value = "内容") |
| | | private String content; |
| | | private String examAttention; |
| | | |
| | | /** |
| | | * 单位id |
| | | * 考试开始时间 |
| | | */ |
| | | @TableField("dept_id") |
| | | private Long deptId; |
| | | private Date startTime; |
| | | |
| | | /** |
| | | * 考试结束时间 |
| | | */ |
| | | private Date endTime; |
| | | |
| | | /** |
| | | * 时间区间 |
| | | */ |
| | | private String examTime; |
| | | |
| | | /** |
| | | * 总分 |
| | | */ |
| | | private String totalScore; |
| | | |
| | | /** |
| | | * 状态 |
| | | */ |
| | | private Integer examStatus; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private String creator; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date creatorDate; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | private String remark; |
| | | |
| | | |
| | | } |