update:医保对账
This commit is contained in:
@@ -23,4 +23,8 @@ public class HisbillsHistory {
|
||||
private String PatientName;
|
||||
private String source;
|
||||
private String trade_date;
|
||||
private String clrType; // 清算类别
|
||||
private String insutype; // 险种类型
|
||||
private String ybzhAmount; // 医保账户金额
|
||||
private String ybtcAmount; // 医保统筹金额
|
||||
}
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
package com.saye.hospitalgd.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author thuang
|
||||
* @version 1.0
|
||||
* @description: 医保对账结果实体类
|
||||
* @date 2025/10/24
|
||||
*/
|
||||
@Data
|
||||
public class MedicalInsuranceReconciliationResult {
|
||||
|
||||
private String id; // 主键ID
|
||||
private String tradeDate; // 对账日期
|
||||
private String insutype; // 险种类型
|
||||
private String clrType; // 清算类别
|
||||
private String medfee_sumamt; // 医疗费用总额
|
||||
private String fund_pay_sumamt; // 基金支付总额(医保统筹)
|
||||
private String acct_pay; // 账户支付金额(医保账户)
|
||||
private String fixmedins_setl_cnt; // 定点医药机构结算笔数
|
||||
private String stmt_rslt; // 对账结果(0-成功,1-失败)
|
||||
private String stmt_rslt_dscr; // 对账结果描述
|
||||
private String apiResult; // 接口调用结果
|
||||
private String createTime; // 创建时间
|
||||
private String modifyTime; // 修改时间
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user