更新部署方式

This commit is contained in:
2025-05-20 18:03:31 +08:00
parent d9d73434f6
commit bdd33043b3
19 changed files with 222 additions and 70 deletions

View File

@@ -1,4 +1,14 @@
package com.dpkj.modules.chs.service;
public interface IHispayService {
/**
* 门诊病人读卡
*
* @param type : 1.就诊卡2.医保卡5.门诊号6.患者姓名和电话号码8.电子健康码/卡9.医保电子凭证
* @param content : 医保卡: 密码 医保电子凭证:条码内容
* @return void
* @author 萧道子 2025/4/28
*/
void getPatientInfo(String type, String content);
}