admin
2019-02-26 2f50d551c02d5d62360d63fc40169fd14ef75114
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yeshi.fanli.service.inter.order;
 
import com.yeshi.fanli.entity.bus.user.HongBaoV2;
import com.yeshi.fanli.entity.bus.user.Order;
 
/**
 * 订单红包对应表用于活动)
 * 
 * @author Administrator
 *
 */
public interface OrderHongBaoMapService {
 
    /**
     * 添加红包订单映射
     * 
     * @param hongBao
     * @param order
     */
    public void addOrderHongBaoMap(HongBaoV2 hongBao, Order order);
 
}