using System.Text.Json.Serialization;
namespace DataSharing.Share.Dtos.Province.Extend
{
///
/// 医疗工单
///
public class FormMedicalInfo
{
///
/// 医院名称
///
[JsonPropertyName("MEDICAL_NAME")]
public string? MedicalName { get; set; }
///
/// 医院地址
///
[JsonPropertyName("MEDICAL_ADDR")]
public string? MedicalAddr { get; set; }
///
/// 科室
///
[JsonPropertyName("DEPARTMENT")]
public string? DepartMent { get; set; }
///
/// 医生
///
[JsonPropertyName("DOCTOR")]
public string? Doctor { get; set; }
///
/// 患者姓名
///
[JsonPropertyName("PATIENTNAME")]
public string? PatientName { get; set; }
///
/// 就诊卡号
///
[JsonPropertyName("CLINICCARDNUM")]
public string? ClinicCardNum { get; set; }
///
/// 患者身份证号
///
[JsonPropertyName("CARDNUM")]
public string? CardNum { get; set; }
}
}