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