Administrator
2025-04-29 7436fc4a44b9f2677b3e3380f2cd2e5d841a6832
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
 
import java.util.List;
 
public interface IApiMallAddressInfoService extends IService<MallAddressInfo> {
 
    List<AddressInfoVo> findAddressInfoList();
 
    FebsResponse addAddress(AddressInfoDto addressInfoDto);
 
    void modifyAddress(AddressInfoDto addressInfoDto);
 
    void setDefaultAddress(Long id);
 
    FebsResponse identifyAddress(ApiIdentifyAddressDto identifyAddressDto);
}