using System;
using System.Collections.Generic;
using System.Text;
using VT.FW.DB;
namespace Edu.Model.Entity.System
{///
/// 节假日实体
///
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class RB_System_Holiday
{
///
/// 主键编号
///
public int HolidayId
{
get;
set;
}
///
/// 节假日开始时间
///
public DateTime? StartTime { get; set; }
///
/// 节假日结束时间
///
public DateTime? EndTime { get; set; }
///
/// 状态
///
public Common.Enum.DateStateEnum Status
{
get;
set;
}
///
/// 1-节假日,2-工作日
///
public int DayType { get; set; }
///
/// 集团编号
///
public int Group_Id { get; set; }
///
/// 学校编号
///
public int School_Id { get; set; }
///
/// 创建时间
///
public DateTime? CreateDate
{
get;
set;
}
}
}