From dd556df997e268153bf1a74616f49b25db11ed3f Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期五, 08 八月 2025 15:37:35 +0800 Subject: [PATCH] 赛事模块 --- cloud-server-account/src/main/java/com/dsh/account/service/TAppUserService.java | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cloud-server-account/src/main/java/com/dsh/account/service/TAppUserService.java b/cloud-server-account/src/main/java/com/dsh/account/service/TAppUserService.java index a6c7435..31be31a 100644 --- a/cloud-server-account/src/main/java/com/dsh/account/service/TAppUserService.java +++ b/cloud-server-account/src/main/java/com/dsh/account/service/TAppUserService.java @@ -1,5 +1,6 @@ package com.dsh.account.service; +import com.alipay.api.AlipayApiException; import com.baomidou.mybatisplus.extension.service.IService; import com.dsh.account.dto.BindDto; import com.dsh.account.dto.SelectDto; @@ -97,6 +98,7 @@ * @throws Exception */ ResultUtil updatePassword(String phone, String code, String password) throws Exception; + ResultUtil updatePassword1(String phone, String code, String password) throws Exception; /** @@ -156,11 +158,11 @@ * @param orderNumber * @return */ - ResultUtil paymentCouponCallback(String code, String orderNumber); + ResultUtil paymentCouponCallback(String code, String orderNumber) throws Exception; - ResultUtil exchangeAddPaymentCallback(String code, String orderNumber, Integer payType); + ResultUtil exchangeAddPaymentCallback(String code, String orderNumber) throws AlipayApiException; List<StoreResponse> queryStoresOfExchange(Integer goodsType, Integer pointsMerId); -- Gitblit v1.7.1