using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PTMedicalInsurance.Entity
{
///
/// 3 【2203A】就诊信息上传-输入参数
///
public class OutpatientAdmInfoUploadInput
{
///
/// 就诊ID
///
public string mdtrt_id { get; set; }
///
/// 人员编号
///
public string psn_no { get; set; }
///
/// 医疗类别
///
public string med_type { get; set; }
///
/// 就诊时间
///
public DateTime begntime { get; set; }
///
/// 主要病情描述
///
public string main_cond_dscr { get; set; }
///
/// 病种编码
///
public string dise_codg { get; set; }
///
/// 病种名称
///
public string dise_name { get; set; }
///
/// 计划生育手术类别
///
public string birctrl_type { get; set; }
///
/// 计划生育手术或生育日期
///
public DateTime birctrl_matn_date { get; set; }
///
/// 生育类别
///
public string matn_type { get; set; }
///
/// 孕周数
///
public int geso_val { get; set; }
///
/// 扩展参数
///
public string exp_content { get; set; }
}
///
/// 诊断信息
///
public class DiagnosisInfo
{
///
/// 诊断类别
///
public string diag_type { get; set; }
///
/// 诊断排序号
///
public int diag_srt_no { get; set; }
///
/// 诊断代码
///
public string diag_code { get; set; }
///
/// 诊断名称
///
public string diag_name { get; set; }
///
/// 诊断科室
///
public string diag_dept { get; set; }
///
/// 诊断医生编码
///
public string dise_dor_no { get; set; }
///
/// 诊断医生姓名
///
public string dise_dor_name { get; set; }
///
/// 诊断时间
///
public DateTime diag_time { get; set; }
///
/// 有效标志
///
public string vali_flag { get; set; }
}
}