| | |
| | | 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; |
| | |
| | | |
| | | List<AddressInfoVo> findAddressInfoList(); |
| | | |
| | | void addAddress(AddressInfoDto addressInfoDto); |
| | | FebsResponse addAddress(AddressInfoDto addressInfoDto); |
| | | |
| | | void modifyAddress(AddressInfoDto addressInfoDto); |
| | | |
| | | void setDefaultAddress(Long id); |
| | | |
| | | FebsResponse identifyAddress(ApiIdentifyAddressDto identifyAddressDto); |
| | | } |