using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PTMedicalInsurance.Entity
{
///
/// 【2304】住院结算
/// 交易说明:通过此交易进行住院正式结算。
///
public class InpatientSettlementInput
{
///
/// 人员编号
///
public string psn_no { get; set; }
///
/// 就诊凭证类型
///
public string mdtrt_cert_type { get; set; }
///
/// 就诊凭证编号
/// 就诊凭证类型为“01”时填写电子凭证令牌,
/// 为“02”时填写身份证号,为“03”时填写社会保障卡卡号
///
public string mdtrt_cert_no { get; set; }
///
/// 医疗费总额
///
public decimal medfee_sumamt { get; set; }
///
/// 个人结算方式
///
public string psn_setlway { get; set; }
///
/// 就诊 ID
///
public string mdtrt_id { get; set; }
///
/// 险种类型
///
public string insutype { get; set; }
///
/// 个人账户使用标志
///
public string acct_used_flag { get; set; }
///
/// 发票号
///
public string invono { get; set; }
///
/// 中途结算标志
///
public string mid_setl_flag { get; set; }
///
/// 全自费金额
///
public decimal fulamt_ownpay_amt { get; set; }
///
/// 超限价金额
///
public decimal overlmt_selfpay { get; set; }
///
/// 先行自付金额
///
public decimal preselfpay_amt { get; set; }
///
/// 符合政策范围金额
///
public decimal inscp_scp_amt { get; set; }
}
///
/// 输出-结算信息
///
public class InpatientSettlementInfoOutput:InpatientPreSettlementInfoOutput
{
///
/// 结算 ID
///
public string setl_id { get; set; }
}
}