电子医保凭证支付

This commit is contained in:
2025-06-12 11:30:33 +08:00
parent 9c09e8f004
commit 9ea1026daa
10 changed files with 188 additions and 59 deletions

View File

@@ -1,7 +1,9 @@
package com.dpkj.modules.chs.service;
import com.alibaba.fastjson.JSONObject;
import com.dpkj.modules.chs.vo.OutpatientBudgetModel;
import com.dpkj.common.vo.ResultData;
import com.dpkj.modules.chs.vo.OutpatientBeginModel;
import com.dpkj.modules.chs.vo.OutpatientFinalModel;
public interface IHispayService {
@@ -30,16 +32,16 @@ public interface IHispayService {
* @return com.dpkj.common.vo.Result<?>
* @author 萧道子 2025/5/27
*/
JSONObject outpatientBudgetByCode(OutpatientBudgetModel data);
ResultData chsCodeAsOutpatientBegin(OutpatientBeginModel data);
/**
* 门诊缴费-医保卡支付
* 门诊缴费-电子凭证支付
*
* @param data :
* @return com.dpkj.common.vo.Result<?>
* @author 萧道子 2025/5/27
*/
JSONObject outpatientBudgetByCard(OutpatientBudgetModel data);
ResultData chsCodeAsOutpatientFinal(OutpatientFinalModel data);
}