|
@@ -52,6 +52,12 @@ public class MarkMtFeesController {
|
|
|
return service.cssybMtPreCal(patientId, times);
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("/deleteAllMtReceipts")
|
|
|
+ public ResultVo<String> deleteAllMtReceipts(@RequestParam("patientId") String patientId,
|
|
|
+ @RequestParam("times") Integer times) {
|
|
|
+ return service.deleteAllMtReceipts(patientId, times);
|
|
|
+ }
|
|
|
+
|
|
|
@PassToken
|
|
|
@PostMapping("/uploadFees")
|
|
|
public Map<String, Object> uploadMtFees(@RequestBody UploadMtFeeParam param) {
|
|
@@ -69,4 +75,5 @@ public class MarkMtFeesController {
|
|
|
public Map<String, Object> calculateMtFees(@RequestBody UploadMtFeeParam param) {
|
|
|
return service.calculateMtFees(param);
|
|
|
}
|
|
|
+
|
|
|
}
|