using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
using LearningOfficer.OA.Core.Entities;
namespace LearningOfficer.OA.Core.Entities.OA.ClassSub
{
///
/// 工作台-班级科目绑定表
///
[SugarTable("follow_classsub")]
public class Follow_classsub : BaseEntity
{
///
/// 备 注:班级id
/// 默认值:
///
[SugarColumn(ColumnName = "class_id" )]
public long Class_id { get; set; }
///
/// 备 注:科目id
/// 默认值:
///
[SugarColumn(ColumnName = "sub_id" )]
public long Sub_id { get; set; }
}
}