Administrator
2021-08-26 d6ee0e1e4a5d0c61565b2af954a1845f2022d85f
src/main/java/org/springblade/modules/apply/controller/ExamPaymentController.java
@@ -72,7 +72,7 @@
    */
   @PostMapping("/submit")
   public R submit(@RequestBody ExamPayment examPayment) throws Exception {
      arg.test01(arg.url+"/examPayment/submit",examPayment);
      //arg.test01(arg.url+"/examPayment/submit",examPayment);
      return R.status(examPaymentService.saveOrUpdate(examPayment));
   }
@@ -83,7 +83,7 @@
    */
   @PostMapping("/remove")
   public R remove(@ApiParam(value = "主键集合") @RequestParam String ids) {
      arg.sendPostRemoveByIds(arg.url+"/examPayment/remove",ids);
      //arg.sendPostRemoveByIds(arg.url+"/examPayment/remove",ids);
      return R.status(examPaymentService.removeByIds(Func.toLongList(ids)));
   }