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.
36 lines
1.1 KiB
36 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Report.Entity
|
|
{
|
|
public class TestRequest
|
|
{
|
|
public string patientName { get; set; }
|
|
public string sexName { get; set; }
|
|
public string age { get; set; }
|
|
public string sampleTypeName { get; set; }
|
|
public string sampleContainerName { get; set; }
|
|
public int containerColor { get; set; }
|
|
public string sampleContainerRemark { get; set; }
|
|
public string lisRequestNo { get; set; }
|
|
public byte[] barcodeImg { get; set; }
|
|
public string patientRegisterNo { get; set; }
|
|
public string asbitemNames { get; set; }
|
|
public string customerOrgName { get; set; }
|
|
public string departmentName { get; set; }
|
|
|
|
public string sampleGroupName { get; set; }
|
|
|
|
public string mobileTelephone { get; set; }
|
|
|
|
public string samplePrintCount { get; set; }
|
|
}
|
|
|
|
public class Dto0002
|
|
{
|
|
public object lisRequest { get; set; }
|
|
}
|
|
}
|