using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace LearningOfficer.OA.Core.Entities.OA.ClassTeacher
{
///
/// 工作台-班级教师绑定表
///
[SugarTable("follow_teacher")]
public class Follow_teacher : BaseEntity
{
///
/// 备 注:班级id
/// 默认值:
///
[SugarColumn(ColumnName = "class_id" )]
public long ClassId { get; set; }
///
/// 备 注:教师名称
/// 默认值:
///
[SugarColumn(ColumnName = "teacher_name" )]
public string? TeacherName { get; set; }
///
/// 备 注:科目id,0时为班主任
/// 默认值:
///
[SugarColumn(ColumnName = "sub_id" )]
public long SubId { get; set; }
}
}