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
| package com.yeshi.fanli.service.inter.order;
|
| import com.yeshi.fanli.entity.order.InviteOrderSubsidy;
| import com.yeshi.fanli.exception.order.InviteOrderSubsidyException;
|
| public interface InviteOrderSubsidyService {
|
| /**
| * 查询补贴
| *
| * @param uid
| * @param orderNo
| * @param type
| * @return
| */
| public InviteOrderSubsidy getByOrderNoAndType(Long uid, String orderNo, Integer type);
|
| /**
| * 添加订单补贴
| *
| * @param orderSubsidy
| * @throws OrderSubsidyException
| */
| public void addOrderSubsidy(InviteOrderSubsidy orderSubsidy) throws InviteOrderSubsidyException;
|
| }
|
|