48 lines
1004 B
C#
48 lines
1004 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace LearningOfficer.OA.Common.Dtos.Curriculum
|
||
{
|
||
public class CurriculumHeadtimeResult
|
||
{
|
||
public long Id { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备 注:第几节
|
||
/// 默认值:
|
||
///</summary>
|
||
public int WhichSection { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 周类型(0普通课表,1单周,2双周)
|
||
/// </summary>
|
||
public int WeekType { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:开始时间
|
||
/// 默认值:
|
||
///</summary>
|
||
public DateTime StartTime { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:结束时间
|
||
/// 默认值:
|
||
///</summary>
|
||
public DateTime EndTime { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:班级id
|
||
/// 默认值:
|
||
///</summary>
|
||
public long Classid { get; set; }
|
||
|
||
}
|
||
}
|