KKSU
2024-11-28 f4552af58ba3531301e6f3337f320cef6bee1af7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
 
    FebsResponse getProvince(Long id);
}