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.
|
|
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;
namespace Report.Entity{ public class PatientInfo { public string patientRegisterId { get; set; } public string patientRegisterNo { get; set; } public string patientName { get; set; } public string photo { get; set; } public byte[] barcodeImg { get; set; } public string sexName { get; set; } public string 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; } }}
|