| 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); | 
| } |