hjl
2024-06-17 e11362ca4849da567a77d8b5e5be510df9fb0741
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.goods.service;
 
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.goods.domain.Recipient;
 
/**
 * <p>
 * 收货地址 服务类
 * </p>
 *
 * @author 无关风月
 * @since 2024-02-06
 */
public interface IRecipientService extends IService<Recipient> {
 
    /**
     * 新增收货地址/修改收货地址
     *
     * @param recipient 收货地址信息
     * @return 操作结果
     */
    Boolean addressSaveOrUpdate(Recipient recipient);
}