Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Curriculum/CurriculumPostionResult.cs

58 lines
1.3 KiB
C#
Raw 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 System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Curriculum
{
/// <summary>
/// 课程定位结果。
/// </summary>
public class CurriculumPostionResult
{
public long Id { get; set; }
/// <summary>
/// 备 注:班级id
/// 默认值:
///</summary>
public long ClassId { get; set; }
/// <summary>
/// 备 注:定位周开始时间
/// 默认值:
///</summary>
public DateTime? PositionWeekStart { get; set; }
/// <summary>
/// 备 注:定位周结束时间
/// 默认值:
///</summary>
public DateTime? PostionWeekEnd { get; set; }
/// <summary>
/// 备 注:定位周类型0普通-不区分单双周1单周2双周
/// 默认值:
///</summary>
public int PostionWeekType { get; set; }
/// <summary>
/// 备 注:添加时间
/// 默认值:
///</summary>
public DateTime Addtime { get; set; }
/// <summary>
/// 备 注:添加人id
/// 默认值:
///</summary>
public long Userid { get; set; }
}
}