package com.ruoyi.hezhi.domain; import com.ruoyi.common.core.domain.BaseEntity; import lombok.Getter; import lombok.Setter; import lombok.ToString; /** * 考试课程 tb_exam * * @author ruoyi * @date 2024-11-12 */ @Getter @Setter @ToString public class TbExamCourse extends BaseEntity { private static final long serialVersionUID = 1L; /** 考试课程ID */ private Long examCourseId; /** 学习中心ID */ private Long studyCenterId; /** 考试ID */ private Long examId; /** 模拟考试ID */ private Long subjectWarehouseClassId; /** 直播ID */ private Long liveBroadcastId; /** 评价机构ID */ private Long evaluateAgencyId; /** 评价机构名称 */ private String evaluateAgencyName; /** 课程ID */ private Long courseId; /** 课程名称 */ private String courseName; }