81 lines
2.0 KiB
C#
81 lines
2.0 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
|
||
namespace LearningOfficer.OA.Core.Entities.OA.Curriculum
|
||
{
|
||
/// <summary>
|
||
/// 课表模板
|
||
///</summary>
|
||
[SugarTable("curriculum_model")]
|
||
public class CurriculumModel : BaseEntity
|
||
{
|
||
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:班级id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "class_id" )]
|
||
public long ClassId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:模板类型(1:单周(普通周);2单双周)
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "model_type" )]
|
||
public int ModelType { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:模板周类型(0普通课表-不分单双周,1单周,2双周)
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "week_type" )]
|
||
public int WeekType { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:批次id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "batch_id" )]
|
||
public long BatchId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:添加时间
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "addtime" )]
|
||
public DateTime Addtime { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:添加人
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "userid")]
|
||
public long Userid { get; set; }
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:一共几节课(默认0)
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "section_all_count")]
|
||
public int SectionAllCount { get; set; }
|
||
/// <summary>
|
||
/// 备 注:是否删除,0正常,1删除
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "isdel")]
|
||
public int Isdel { get; set; }
|
||
}
|
||
|
||
} |