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.
32 lines
886 B
32 lines
886 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Report.Entity
|
|
{
|
|
/// <summary>
|
|
/// 乙肝报告单
|
|
/// </summary>
|
|
public class HBsAgAsbitem
|
|
{
|
|
public string itemTypeId { get; set; }
|
|
|
|
public int absOrderNo { get; set; }
|
|
public string asbitemNames { get; set; }
|
|
public int displayOrder { get; set; }
|
|
public string checkDoctorName { get; set; }
|
|
public string checkDoctorSignUrl { get; set; }
|
|
public string checkDate { get; set; }
|
|
|
|
public string auditorName { get; set; }
|
|
public string auditorSignUrl { get; set; }
|
|
public string lisSampleNo { get; set; }
|
|
|
|
public string samplerName { get; set; }
|
|
public string samplingTime { get; set; }
|
|
|
|
public string summarysText { get; set; }
|
|
}
|
|
}
|