20 lines
502 B
C#
20 lines
502 B
C#
using APT.Infrastructure.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace APT.MS.Domain.Entities.FO
|
|
{
|
|
[Description("国家法定假期维护")]
|
|
public class T_FO_HOLIDAYS : MesEntityBase
|
|
{
|
|
[Description("年度")]
|
|
public string YEAR { get; set; }
|
|
|
|
[Description("导航属性:假期子表")]
|
|
[FormFieldEdit]
|
|
public ICollection<T_FO_HOLIDAYS_DETAIL> Nav_Details { get; set; }
|
|
}
|
|
}
|