体检系统架构
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.
 
 
 

20 lines
504 B

using PEIS.Utils;
namespace DicomTool
{
public class ReportPacs : ObjectData
{
public override String TableName { get => "Report_Pacs"; }
[KeyFlag(true)]
public Int64 ID { get; set; }
public String PatientCode { get; set; }
public String ImageFile { get; set; }
public String ExamFeeitem_Code { get; set; }
public String AccessionNumber { get; set; }
[RefFlag(true)]
public String SopInstanceUID { get; set; }
}
}