From 4fd9de60e8bf558505312d20efa09d49dd7b2d0e Mon Sep 17 00:00:00 2001 From: duLingLing Date: Tue, 5 Nov 2019 15:45:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E8=AE=BE=E7=BD=AE=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E6=8E=A5=E6=94=B6=E8=A7=A3=E7=BB=91=E5=8F=91=E9=80=81?= =?UTF-8?q?=E9=AA=8C=E8=AF=81=E7=A0=81=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- .../payment/manage/appclient/web/RetailAppController.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 3db99dcf0..86c67c2c3 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ 4.0.0 manage - 1.2.60 + 1.2.61 UTF-8 diff --git a/src/main/java/au/com/royalpay/payment/manage/appclient/web/RetailAppController.java b/src/main/java/au/com/royalpay/payment/manage/appclient/web/RetailAppController.java index 444874b12..b6916a91b 100644 --- a/src/main/java/au/com/royalpay/payment/manage/appclient/web/RetailAppController.java +++ b/src/main/java/au/com/royalpay/payment/manage/appclient/web/RetailAppController.java @@ -727,7 +727,7 @@ public class RetailAppController { * @param phone contact_phone * @throws Exception */ - @PutMapping("/account/phone/bind") + @PutMapping("/account/phone_verify/bind") public JSONObject sendBindAccountPhone(@ModelAttribute(RETAIL_DEVICE) JSONObject device, @RequestBody JSONObject phone) throws Exception { retailAppService.sendBindAccountPhone(device, phone); return new JSONObject(); @@ -739,7 +739,7 @@ public class RetailAppController { * @param device * @throws Exception */ - @PutMapping("/account/phone/unbind") + @PutMapping("/account/phone_verify/unbind") public JSONObject unBindAccountPhone(@ModelAttribute(RETAIL_DEVICE) JSONObject device) throws Exception { retailAppService.sendUnbindAccountPhone(device); return new JSONObject();