Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Core/Entities/OA/Curriculum/CurriculumModelInfo.cs

76 lines
1.8 KiB
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.Curriculum
{
/// <summary>
/// 模板课配置信息
///</summary>
[SugarTable("curriculum_model_info")]
public class CurriculumModelInfo : BaseEntity
{
/// <summary>
/// 备 注:模板id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "model_id" )]
public long ModelId { get; set; }
/// <summary>
/// 备 注:周几(1-7对应周一到周日)
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "week_count" )]
public int WeekCount { get; set; }
/// <summary>
/// 备 注:第几节
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "section_count" )]
public int SectionCount { get; set; }
/// <summary>
/// 备 注:通用开始时间
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "start_time" )]
public DateTime StartTime { get; set; }
/// <summary>
/// 备 注:通用结束时间
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "end_time" )]
public DateTime EndTime { get; set; }
/// <summary>
/// 备 注:模板周类型0普通课表-不分单双周1单周2双周
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "week_type" )]
public int WeekType { get; set; }
/// <summary>
/// 备 注:0正常 1删除
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "isdel" )]
public int Isdel { get; set; }
}
}