68 lines
1.7 KiB
C#
68 lines
1.7 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
|
||
namespace LearningOfficer.OA.Core.Entities.OA.Curriculum
|
||
{
|
||
/// <summary>
|
||
/// 课表定位表
|
||
///</summary>
|
||
[SugarTable("curriculum_postion")]
|
||
public class CurriculumPostion : BaseEntity
|
||
{
|
||
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:班级id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "class_id" )]
|
||
public long ClassId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:定位周开始时间
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "position_week_start" )]
|
||
public DateTime? PositionWeekStart { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:定位周结束时间
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "postion_week_end" )]
|
||
public DateTime? PostionWeekEnd { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:定位周类型(0普通-不区分单双周,1单周,2双周)
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "postion_week_type" )]
|
||
public int PostionWeekType { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:添加时间
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "addtime" )]
|
||
public DateTime Addtime { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:添加人id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "userid" )]
|
||
public long Userid { get; set; }
|
||
|
||
|
||
}
|
||
|
||
} |