Browse Source

收付款单删除

chenc 4 years ago
parent
commit
d027a58f4e

+ 1 - 1
src/main/java/org/jeecg/modules/payment/controller/ManagerPaymentAndReceiptSlipController.java

@@ -151,7 +151,7 @@ public class ManagerPaymentAndReceiptSlipController {
 			@ApiImplicitParam(name = "id", value = "id", required = true, dataType = "String"),
 	})
 	@DeleteMapping(value = "/delete")
-	public Result<ManagerPaymentAndReceiptSlip> delete(@RequestBody SlieReqDTO reqDTO) {
+	public Result<ManagerPaymentAndReceiptSlip> delete(SlieReqDTO reqDTO) {
 		Result<ManagerPaymentAndReceiptSlip> result = new Result<ManagerPaymentAndReceiptSlip>();
 		ManagerPaymentAndReceiptSlip managerPaymentAndReceiptSlip = managerPaymentAndReceiptSlipService.getById(reqDTO.getId());
 		if(managerPaymentAndReceiptSlip==null) {