d_sms_service/APT.BaseData.Domain/Entities/FM/T_FM_HOLIDAY_DETAIL.cs
2024-10-28 13:45:58 +08:00

35 lines
856 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 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; }
/// <summary>
/// 开始日期
/// </summary>
[Description("开始日期")]
public DateTime START_TIME { get; set; }
/// <summary>
/// 结束日期
/// </summary>
[Description("结束日期")]
public DateTime END_TIME { get; set; }
/// <summary>
/// 是否工作日 true是 false 否
/// </summary>
[Description("是否工作日")]
public bool WORK { get; set; }
[Description("备注")]
public string REMARK { get; set; }
}
}