using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PTMedicalInsurance.Entity
{
// 【2001】人员待遇享受检查 - 输入参数定义类
public class BenefitCheckInput
{
///
/// 人员编号
///
public string psn_no { get; set; }
///
/// 险种类型
///
public string insutype { get; set; }
///
/// 定点医药机构编号
///
public string fixmedins_code { get; set; }
///
/// 医疗类别
///
public string med_type { get; set; }
///
/// 开始时间
///
public DateTime begntime { get; set; }
///
/// 结束时间
///
public DateTime endtime { get; set; }
///
/// 病种编码
///
public string dise_codg { get; set; }
///
/// 病种名称
///
public string dise_name { get; set; }
///
/// 手术操作代码
///
public string oprn_oprt_code { get; set; }
///
/// 手术操作名称
///
public string oprn_oprt_name { get; set; }
///
/// 生育类别
///
public string matn_type { get; set; }
///
/// 计划生育手术类别
///
public string birctrl_type { get; set; }
}
// 【2001】人员待遇享受检查 - 输出参数定义类
public class BenefitCheckOutput
{
///
/// 人员编号
///
public string psn_no { get; set; }
///
/// 待遇检查类型
///
public string trt_chk_type { get; set; }
///
/// 基金支付类型
///
public string fund_pay_type { get; set; }
///
/// 基金款项待遇享受标志
///
public string trt_enjymnt_flag { get; set; }
///
/// 开始日期
///
public DateTime begndate { get; set; }
///
/// 结束日期
///
public DateTime enddate { get; set; }
///
/// 待遇检查结果
///
public string trt_chk_rslt { get; set; }
}
}