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

25 lines
618 B
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 System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Curriculum
{
public class WeekInfoResult
{
/// <summary>
/// 开始日期
/// </summary>
public DateTime StartDate { get; set; }
/// <summary>
/// 结束日期
/// </summary>
public DateTime EndDate { get; set; }
/// <summary>
/// 周类型0普通课表-不分单双周1单周2双周
/// </summary>
public int WeekType { get; set; }
}
}