using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PTMedicalInsurance.Entity
{
///
/// 【2201】门诊挂号-输入参数
///
public class OutpatientRegistrationInput
{
///
/// 人员编号
///
public string psn_no { get; set; }
///
/// 险种类型
///
public string insutype { get; set; }
///
/// 挂号时间
///
public DateTime begntime { get; set; }
///
/// 就诊凭证类型
///
public string mdtrt_cert_type { get; set; }
///
/// 就诊凭证编号
///
public string mdtrt_cert_no { get; set; }
///
/// 住院/门诊号
///
public string ipt_otp_no { get; set; }
///
/// 医师编码
///
public string atddr_no { get; set; }
///
/// 医师姓名
///
public string dr_name { get; set; }
///
/// 科室编码
///
public string dept_code { get; set; }
///
/// 科室名称
///
public string dept_name { get; set; }
///
/// 科别
///
public string caty { get; set; }
}
///
/// 【2201】门诊挂号-输出参数
///
public class OutpatientRegistrationOutput
{
///
/// 就诊ID
///
public string mdtrt_id { get; set; }
///
/// 人员编号
///
public string psn_no { get; set; }
///
/// 住院/门诊号
///
public string ipt_otp_no { get; set; }
}
}