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