using APT.Infrastructure.Core; using System; using System.Collections.Generic; using System.ComponentModel; namespace APT.BaseData.Domain.Entities { /// /// 通知附件 /// public class T_PF_NOTICE_FILE : MesEntityBase { /// /// 通知 /// [Description("通知")] [DataFieldForeignKey("Nav_Notice", "Nav_Files")] public Guid NOTICE_ID { get; set; } /// /// 通知 /// [Description("通知")] public T_PF_NOTICE Nav_Notice { get; set; } /// /// 文件ID /// [Description("文件ID")] [DataFieldForeignKey("Nav_ImgFile")] public Guid IMG_FILE_ID { get; set; } /// /// 导航属性:文件 /// [Description("导航属性:文件")] public virtual T_PF_IMG_FILE Nav_ImgFile { get; set; } } }