1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.sinata.rest.modular.mall.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.sinata.rest.modular.mall.model.MallUserAddress;
| import org.apache.ibatis.annotations.Param;
|
| /**
| * <p>
| * 收货地址 Mapper 接口
| * </p>
| *
| * @author goku
| * @since 2023-03-18
| */
| public interface MallUserAddressMapper extends BaseMapper<MallUserAddress> {
|
| /**
| * 设置默认地址
| */
| void updateDefault(@Param("id") Integer id, @Param("userId") Integer userId);
| }
|
|