xinyb
2024-07-18 80430d52f7716e3eb3e517dc96f94c4a6f9657bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.yc.sdk.shopping.service;
 
 
import java.util.List;
 
import com.yc.sdk.shopping.entity.VoucherEntity;
import com.yc.sdk.shopping.entity.VoucherThemeEntity;
 
public interface VoucherIfc {
    /**
     * 获取 礼品券 记录
     * @param code
     * @return
     */
    public VoucherEntity getVoucher(String code,String shopCcCode) ;
    
    /**
     * 获取 礼品券主题 
     * @return
     */
    public List<VoucherThemeEntity> getVoucherThemes(String shopCcCode) ;
    
    
    /**
     * 保存页面 购买礼品券
     * @param voucherEntity
     * @return
     */
    public VoucherEntity saveVoucherEntity(VoucherEntity voucherEntity,String userCode,String shopCcCode);
}