60 lines
1.4 KiB
C#
60 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.Curriculum
|
|
{
|
|
/// <summary>
|
|
/// 课程-班级的科目教师绑定关联表
|
|
///</summary>
|
|
[SugarTable("curriculum_sub_teacher")]
|
|
public class CurriculumSubTeacher : BaseEntity
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:班级id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "class_id" )]
|
|
public long ClassId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:科目id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "sub_id" )]
|
|
public long SubId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:科目名称
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "sub_name" )]
|
|
public string SubName { get; set; } = null!;
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:教师id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "teacher_id" )]
|
|
public long TeacherId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:教师名称
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "teacher_name" )]
|
|
public string TeacherName { get; set; } = null!;
|
|
|
|
|
|
}
|
|
|
|
} |