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