HIS医保
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user