| | |
| | | import com.ruoyi.member.dto.MemberAddressDTO; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.system.api.domain.MemberAddress; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface IMemberAddressService extends IService<MemberAddress> { |
| | | PageDTO<MemberAddress> getMemberAddressList(MemberAddressDTO memberAddressDTO); |
| | | MemberAddress getDefaultMemberAddressList(MemberAddressDTO memberAddressDTO); |
| | | |
| | | void addMemberAddress(MemberAddressDTO memberAddressDTO); |
| | | |