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

71 lines
1.7 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_headtime")]
public class CurriculumHeadtime : BaseEntity
{
/// <summary>
/// 周类型0普通课表1单周2双周
/// </summary>
[SugarColumn(ColumnName = "weektype")]
public int WeekType { get; set; }
/// <summary>
/// 备 注:第几节
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "which_section" )]
public int WhichSection { 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>
/// 备 注:班级id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "classid" )]
public long Classid { get; set; }
/// <summary>
/// 备 注:批次id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "batchid" )]
public long Batchid { get; set; }
/// <summary>
/// 备 注:模型id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "model_id")]
public long ModelId { get; set; }
}
}