using System;
using FreeSql.DataAnnotations;
using ZhonTai.Admin.Core.Entities;
using NPP.SmartSchedue.Api.Contracts.Core.Consts;
namespace NPP.SmartSchedue.Api.Contracts.Domain.Time;
///
/// 基础日历
///
[Table(Name = DbConsts.TableNamePrefix + "calendar")]
public partial class CalendarEntity : EntityTenant
{
///
/// 日期
///
public DateTime Date { get; set; }
///
/// 日期类型
///
[Column(StringLength = 50)]
public string DateType { get; set; }
///
/// 是否工作日
///
public bool IsWorkDay { get; set; } = true;
///
/// 特殊日期说明
///
[Column(StringLength = 200)]
public string Description { get; set; }
}