package com.ycl.jxkg.domain.entity;
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.ycl.jxkg.domain.base.AbsEntity;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
|
/**
|
* 考试作弊记录
|
*
|
* @author gonghl
|
* @since 2024-06-26
|
*/
|
@Data
|
@Accessors(chain = true)
|
@TableName("t_exam_cheat")
|
@EqualsAndHashCode(callSuper = true)
|
public class ExamCheat extends AbsEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 考试id
|
*/
|
@TableField("exam_id")
|
private Integer examId;
|
|
/**
|
* 作弊人
|
*/
|
@TableField("cheat_user")
|
private Integer cheatUser;
|
|
/**
|
* 创建人
|
*/
|
@TableField(value = "create_user", fill = FieldFill.INSERT)
|
private Integer createUser;
|
|
}
|