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
| package com.yeshi.fanli.service.inter.elme;
|
| import com.yeshi.fanli.entity.elme.ElmeHongBaoOrderMap;
| import com.yeshi.fanli.exception.elme.ElmeHongBaoOrderMapException;
|
| /**
| * 饿了么红包订单映射
| *
| * @author Administrator
| *
| */
| public interface ElmeHongBaoOrderMapService {
| /**
| * 添加映射
| *
| * @param map
| */
| public void addHongBaoOrderMap(ElmeHongBaoOrderMap map) throws ElmeHongBaoOrderMapException;
|
| /**
| * 根据订单ID查询
| *
| * @param orderId
| * @return
| */
| public ElmeHongBaoOrderMap selectByOrderId(Long orderId);
| }
|
|