using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.System
{
///
/// 日历表
///
[SugarTable("Sys_Calendar")]
public class Sys_Calendar : EntityBase
{
///
/// 年月日
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Dt { get; set; }
///
/// 是否是工作日
/// true false
///
[SugarColumn(IsNullable = true, ColumnDataType = "bit")]
public bool IsWorkDay { get; set; }
///
/// 是否是节假日
/// 0 true 1 false
///
[SugarColumn(IsNullable = true, ColumnDataType = "bit)")]
public bool IsHoliDay { get; set; }
///
/// 节假日名称
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string HoliName { get; set; }
}
}