using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ReportTemplateTool.Models { /// /// 报告单模版配置 /// public class DictReportFile { [Key] public long ID { get; set; } public string Code { get; set; } public string FileName { get; set; } public byte[] File { get; set; } public DateTime? UpdateTime { get; set; } [NotMapped] public string SampleCodes { get; set; } } }