You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ReportTemplateTool.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 报告单配置
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|