HIS医保

This commit is contained in:
2025-05-29 17:41:06 +08:00
parent d8d53ebb22
commit 9c08c6e7d4
7 changed files with 393 additions and 116 deletions

View File

@@ -1,16 +1,45 @@
package com.dpkj.modules.chs.service;
import com.alibaba.fastjson.JSONObject;
import com.dpkj.modules.chs.vo.OutpatientBudgetModel;
public interface IHispayService {
/**
* 门诊病人读卡
* 通过医保电子凭证读卡
*
* @param type : 1.就诊卡2.医保卡5.门诊号6.患者姓名和电话号码8.电子健康码/卡9.医保电子凭证
* @param content : 医保卡: 密码 医保电子凭证:条码内容
* @return void
* @author 萧道子 2025/4/28
* @return com.alibaba.fastjson.JSONObject
* @author 萧道子 2025/5/28
*/
JSONObject getPatientInfo(String type, String content);
JSONObject readCode();
/**
* 通过医保卡-读卡
*
* @return com.alibaba.fastjson.JSONObject
* @author 萧道子 2025/5/28
*/
JSONObject readCard(String password);
/**
* 门诊缴费-预算 电子凭证支付
*
* @param data :
* @return com.dpkj.common.vo.Result<?>
* @author 萧道子 2025/5/27
*/
JSONObject outpatientBudgetByCode(OutpatientBudgetModel data);
/**
* 门诊缴费-预算 医保卡支付
*
* @param data :
* @return com.dpkj.common.vo.Result<?>
* @author 萧道子 2025/5/27
*/
JSONObject outpatientBudgetByCard(OutpatientBudgetModel data);
}