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.
59 lines
2.0 KiB
59 lines
2.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Report.Entity
|
|
{
|
|
public class Detail
|
|
{
|
|
public string guideName { get; set; }
|
|
public int asbitemCount { get; set; }
|
|
public int displayOrder { get; set; }
|
|
public List<DetailName> detail_Name { get; set; }
|
|
}
|
|
|
|
public class DetailName
|
|
{
|
|
public string asbitemName { get; set; }
|
|
public string asbitemGuide { get; set; }
|
|
|
|
public string checkRequestNo { get; set; }
|
|
public int displayOrder { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 与0008共用
|
|
/// </summary>
|
|
public class Dto0001
|
|
{
|
|
public string patientRegisterId { get; set; }
|
|
public string patientRegisterNo { get; set; }
|
|
public string patientName { get; set; }
|
|
public string photo { get; set; }
|
|
public string sexName { get; set; }
|
|
public short? age { get; set; }
|
|
|
|
public string hisPatientId { get; set; }
|
|
public string medicalStartDate { get; set; }
|
|
public string idNo { get; set; }
|
|
public string mobileTelephone { get; set; }
|
|
public string patientNo { get; set; }
|
|
public int medicalTimes { get; set; }
|
|
public string jobCardNo { get; set; }
|
|
public string medicalCardNo { get; set; }
|
|
public string customerOrgName { get; set; }
|
|
public string customerOrgShortName { get; set; }
|
|
public string departmentName { get; set; }
|
|
public string customerOrgGroupName { get; set; }
|
|
public string medicalPackageName { get; set; }
|
|
public string personnelTypeName { get; set; }
|
|
public string organizationUnitId { get; set; }
|
|
public string organizationUnitName { get; set; }
|
|
public string medicalCenterAddress { get; set; }
|
|
public string medicalCenterTelphone { get; set; }
|
|
public string medicalCenterFax { get; set; }
|
|
public string medicalTypeName { get; set; }
|
|
public List<Detail> detail { get; set; }
|
|
}
|
|
}
|