LIS报告单模板管理工具
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.

21 lines
562 B

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ReportTemplateTool.Models
{
/// <summary>
/// 报告单模版配置
/// </summary>
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; }
}
}