2025-03-24 22:12:01 +08:00
|
|
|
package com.dpkj.modules.chs.service;
|
|
|
|
|
|
2025-05-22 18:36:38 +08:00
|
|
|
import com.alibaba.fastjson.JSONObject;
|
2025-06-12 11:30:33 +08:00
|
|
|
import com.dpkj.common.vo.ResultData;
|
|
|
|
|
import com.dpkj.modules.chs.vo.OutpatientBeginModel;
|
|
|
|
|
import com.dpkj.modules.chs.vo.OutpatientFinalModel;
|
2025-05-22 18:36:38 +08:00
|
|
|
|
2025-03-24 22:12:01 +08:00
|
|
|
public interface IHispayService {
|
2025-05-20 18:03:31 +08:00
|
|
|
|
|
|
|
|
/**
|
2025-05-29 17:41:06 +08:00
|
|
|
* 通过医保电子凭证读卡
|
2025-05-20 18:03:31 +08:00
|
|
|
*
|
2025-05-29 17:41:06 +08:00
|
|
|
* @return com.alibaba.fastjson.JSONObject
|
|
|
|
|
* @author 萧道子 2025/5/28
|
2025-05-20 18:03:31 +08:00
|
|
|
*/
|
2025-05-29 17:41:06 +08:00
|
|
|
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
|
|
|
|
|
*/
|
2025-06-12 11:30:33 +08:00
|
|
|
ResultData chsCodeAsOutpatientBegin(OutpatientBeginModel data);
|
2025-05-29 17:41:06 +08:00
|
|
|
|
|
|
|
|
/**
|
2025-06-12 11:30:33 +08:00
|
|
|
* 门诊缴费-结算 电子凭证支付
|
2025-05-29 17:41:06 +08:00
|
|
|
*
|
|
|
|
|
* @param data :
|
|
|
|
|
* @return com.dpkj.common.vo.Result<?>
|
|
|
|
|
* @author 萧道子 2025/5/27
|
|
|
|
|
*/
|
2025-06-12 11:30:33 +08:00
|
|
|
ResultData chsCodeAsOutpatientFinal(OutpatientFinalModel data);
|
2025-05-29 17:41:06 +08:00
|
|
|
|
2025-03-24 22:12:01 +08:00
|
|
|
}
|