package com.thhy.secure.modules.biz.exam.entity;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
/**
|
*
|
* @author zhang_xiao_bo
|
* @since 2023-05-26 09:14:42
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class Exam implements Serializable {
|
|
|
|
@Idkey
|
private String examId;
|
|
|
/**
|
* 考核名称
|
*/
|
|
|
private String examName;
|
|
/**
|
* 考题数量
|
*/
|
|
|
private Integer questionCount;
|
|
/**
|
* 合格分数
|
*/
|
|
|
private Integer qualifiedScore;
|
|
/**
|
* 考试日期
|
*/
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date examDate;
|
|
/**
|
* 考题类型
|
*/
|
|
|
private String examType;
|
|
/**
|
* 培训ID
|
*/
|
|
|
private String trainId;
|
|
|
|
private Date createTime;
|
|
|
|
private Date updateTime;
|
|
|
|
private String createUser;
|
|
|
|
private String updateUser;
|
|
/**
|
* 1Y0N
|
*/
|
|
|
private Integer isUse;
|
|
|
|
private String companyId;
|
}
|