using System.ComponentModel.DataAnnotations; namespace ReportTemplateTool.Models { /// /// 报告单配置 /// public class DictReport { [Key] public string? SampleCode { get; set; } public string? SampleName { get; set; } public string? GroupCode { get; set; } public string? SpecimenCode { get; set; } public bool? IsLocal { get; set; } public string? ReportClass { get; set; } public string? Pym { get; set; } public string? UniteCode { get; set; } public decimal? Color { get; set; } public string? Title { get; set; } public string? TitleEn { get; set; } public string? FileName { get; set; } public bool? IsBloodRoutine { get; set; } public bool? IsUrineRoutine { get; set; } public bool? IsStoolRoutine { get; set; } public bool? IsCruor { get; set; } public bool? IsNcov { get; set; } public string? InsCode { get; set; } } }