|
@@ -92,4 +92,13 @@ public class SiZyController {
|
|
|
public ResultVo<String> timeoutSettlement(@RequestBody ZyPatientInfo p) {
|
|
|
return ResultVoUtil.success(service.timeoutSettlement(p));
|
|
|
}
|
|
|
+
|
|
|
+ @PassToken
|
|
|
+ @GetMapping("/revokeSingleCharge")
|
|
|
+ public ResultVo<String> revokeSingleCharge(@RequestParam("patNo") String patNo,
|
|
|
+ @RequestParam("times") Integer times,
|
|
|
+ @RequestParam("ledgerSn") Integer ledgerSn,
|
|
|
+ @RequestParam("detailSn") Integer detailSn) {
|
|
|
+ return service.revokeSingleCharge(patNo, times, ledgerSn, detailSn);
|
|
|
+ }
|
|
|
}
|