From ce1e7115d542fc21182d4a3b2dfca795066748d3 Mon Sep 17 00:00:00 2001 From: lijiarao Date: Fri, 26 Jul 2024 14:31:19 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E5=B1=8F=E8=94=BD=E6=A0=87=E5=8D=8F?= =?UTF-8?q?=E8=AF=81=E4=B9=A6=E7=BC=B4=E8=B4=B9=E6=8E=A8=E9=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../TbCertificatePaymentController.java | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/jero-boot-incoming-payment/src/main/java/com/jero/member/controller/TbCertificatePaymentController.java b/jero-boot-incoming-payment/src/main/java/com/jero/member/controller/TbCertificatePaymentController.java index 852ae612..dadd35c1 100644 --- a/jero-boot-incoming-payment/src/main/java/com/jero/member/controller/TbCertificatePaymentController.java +++ b/jero-boot-incoming-payment/src/main/java/com/jero/member/controller/TbCertificatePaymentController.java @@ -182,18 +182,18 @@ public class TbCertificatePaymentController extends JeroController incomingUpdateCertificate(@RequestBody TbCertificatePayment tbCertificatePayment){ - CertificatePaymentInfo certificatePaymentInfo = new CertificatePaymentInfo(); - certificatePaymentInfo.setId(tbCertificatePayment.getTbPaymentId()); - certificatePaymentInfo.setMemberId(tbCertificatePayment.getMemberId()); - certificatePaymentInfo.setInvoiceRequirements(tbCertificatePayment.getInvoiceRequirements()); - certificatePaymentInfo.setHeaderName(tbCertificatePayment.getHeaderName()); - certificatePaymentInfo.setTaxNumber(tbCertificatePayment.getTaxNumber()); - certificatePaymentInfo.setInvoiceAddress(tbCertificatePayment.getInvoiceAddress()); - certificatePaymentInfo.setInvoicePhone(tbCertificatePayment.getInvoicePhone()); - certificatePaymentInfo.setDepositBank(tbCertificatePayment.getDepositBank()); - certificatePaymentInfo.setBankAccount(tbCertificatePayment.getBankAccount()); - - AuthenticationUtils.post("/certificatePaymentInfo/incomingUpdateCertificate",null,certificatePaymentInfo); + //CertificatePaymentInfo certificatePaymentInfo = new CertificatePaymentInfo(); + //certificatePaymentInfo.setId(tbCertificatePayment.getTbPaymentId()); + //certificatePaymentInfo.setMemberId(tbCertificatePayment.getMemberId()); + //certificatePaymentInfo.setInvoiceRequirements(tbCertificatePayment.getInvoiceRequirements()); + //certificatePaymentInfo.setHeaderName(tbCertificatePayment.getHeaderName()); + //certificatePaymentInfo.setTaxNumber(tbCertificatePayment.getTaxNumber()); + //certificatePaymentInfo.setInvoiceAddress(tbCertificatePayment.getInvoiceAddress()); + //certificatePaymentInfo.setInvoicePhone(tbCertificatePayment.getInvoicePhone()); + //certificatePaymentInfo.setDepositBank(tbCertificatePayment.getDepositBank()); + //certificatePaymentInfo.setBankAccount(tbCertificatePayment.getBankAccount()); + // + //AuthenticationUtils.post("/certificatePaymentInfo/incomingUpdateCertificate",null,certificatePaymentInfo); return Result.OK(); }