From 52e1d0189c197a77787bb276492a68b8d0f8b4c9 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Mon, 13 Jan 2025 11:55:55 +0800 Subject: [PATCH] refactor(ZzSmsSend): 更新短信发送配置 --- src/main/java/cc/mrbird/febs/mall/service/IApiMallAddressInfoService.java | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/service/IApiMallAddressInfoService.java b/src/main/java/cc/mrbird/febs/mall/service/IApiMallAddressInfoService.java index 64d27c3..915eba2 100644 --- a/src/main/java/cc/mrbird/febs/mall/service/IApiMallAddressInfoService.java +++ b/src/main/java/cc/mrbird/febs/mall/service/IApiMallAddressInfoService.java @@ -1,6 +1,8 @@ package cc.mrbird.febs.mall.service; +import cc.mrbird.febs.common.entity.FebsResponse; import cc.mrbird.febs.mall.dto.AddressInfoDto; +import cc.mrbird.febs.mall.dto.ApiIdentifyAddressDto; import cc.mrbird.febs.mall.entity.MallAddressInfo; import cc.mrbird.febs.mall.vo.AddressInfoVo; import com.baomidou.mybatisplus.extension.service.IService; @@ -11,9 +13,13 @@ List<AddressInfoVo> findAddressInfoList(); - void addAddress(AddressInfoDto addressInfoDto); + FebsResponse addAddress(AddressInfoDto addressInfoDto); void modifyAddress(AddressInfoDto addressInfoDto); void setDefaultAddress(Long id); + + FebsResponse identifyAddress(ApiIdentifyAddressDto identifyAddressDto); + + FebsResponse getProvince(Long id); } -- Gitblit v1.9.1