57 lines
1.3 KiB
C#
57 lines
1.3 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
|
||
namespace LearningOfficer.OA.Core.Entities.OA.Curriculum
|
||
{
|
||
/// <summary>
|
||
/// 课表特殊周
|
||
///</summary>
|
||
[SugarTable("curriculum_special_week")]
|
||
public class CurriculumSpecialWeek : BaseEntity
|
||
{
|
||
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:班级id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "classid" )]
|
||
public long Classid { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:批次id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "batchid" )]
|
||
public long Batchid { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:周几
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "week_count")]
|
||
public int WeekCount { get; set; }
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:模型id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "model_id")]
|
||
public long ModelId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 周类型(0普通课表,1单周,2双周)
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "weektype")]
|
||
public int WeekType { get; set; }
|
||
}
|
||
|
||
} |