using APT.Infrastructure.Core;
using System;
using System.ComponentModel;
namespace APT.BaseData.Domain.Entities.FM
{
[Description("节假日方案明细表")]
[IgnoreT4]public class T_FM_HOLIDAY_DETAIL : MesEntityBase
{
public Guid HOLIDAY_ID { get; set; }
///
/// 开始日期
///
[Description("开始日期")]
public DateTime START_TIME { get; set; }
///
/// 结束日期
///
[Description("结束日期")]
public DateTime END_TIME { get; set; }
///
/// 是否工作日 true:是 false 否
///
[Description("是否工作日")]
public bool WORK { get; set; }
[Description("备注")]
public string REMARK { get; set; }
}
}