|
@@ -2,23 +2,16 @@ package thyyxxk.webserver.service.externalhttp;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.dtflys.forest.annotation.*;
|
|
|
-import thyyxxk.webserver.entity.mzpayqrcode.PatInfo;
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
public interface ThmzSystem {
|
|
|
- @Post("{url}/queryPatientInfo")
|
|
|
- PatInfo queryPatientInfo(@Var("url") String url, @JSONBody JSONObject obj);
|
|
|
-
|
|
|
@Post("{url}/getMzChargeDetailForUnPaid")
|
|
|
Map<String, Object> getMzChargeDetailForUnPaid(@Var("url") String url, @JSONBody JSONObject obj);
|
|
|
|
|
|
@Post("{url}/unPaidToFullChargeDetail")
|
|
|
Map<String, Object> unPaidToFullChargeDetail(@Var("url") String url, @JSONBody JSONObject obj);
|
|
|
|
|
|
- @Post("{url}/getChargeDetailByHisOrdNum")
|
|
|
- Map<String, Object> getChargeDetailByHisOrdNum(@Var("url") String url, @JSONBody JSONObject obj);
|
|
|
-
|
|
|
@Post("{url}/payChargeDetailFormDbzsf")
|
|
|
Map<String, Object> payChargeDetailFormDbzsf(@Var("url") String url, @JSONBody JSONObject obj);
|
|
|
|