50 lines
792 B
Java
50 lines
792 B
Java
package io.renren.modules.demo.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 选题表
|
|
*
|
|
* @author Mark sunlightcs@gmail.com
|
|
* @since 1.0.0 2025-03-06
|
|
*/
|
|
@Data
|
|
@TableName("tb_subject_selection")
|
|
public class SubjectSelectionEntity {
|
|
|
|
/**
|
|
* 选题描述
|
|
*/
|
|
private Long id;
|
|
/**
|
|
* 选题名称
|
|
*/
|
|
private String title;
|
|
/**
|
|
* 选题描述
|
|
*/
|
|
private String description;
|
|
/**
|
|
* 选题描述
|
|
*/
|
|
private String teacher;
|
|
/**
|
|
* 适用专业
|
|
*/
|
|
private String major;
|
|
/**
|
|
* 选题难度
|
|
*/
|
|
private String difficulty;
|
|
/**
|
|
* 选题状态
|
|
*/
|
|
private String status;
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private Date createTime;
|
|
} |