package com.qs.mp.user.service; import com.qs.mp.user.domain.UserAddr; import com.baomidou.mybatisplus.extension.service.IService; /** *

* 渠道配送地址 服务类 *

* * @author quanshu * @since 2022-03-02 */ public interface IUserAddrService extends IService { UserAddr getDefaultChannelAddr(Long channelId); boolean updateDefaultChannelAddr(Long addrId, Long channelId); boolean removeChannelAddrByUserId(Long addrId, Long channelId); UserAddr getChannelAddrByUserId(Long addrId, Long channelId); }