Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Core/Entities/OA/ClassTeacher/Follow_teacher.cs

40 lines
938 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
/// 备 注:科目id0时为班主任
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "sub_id" )]
public long SubId { get; set; }
}
}