| 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.doumee.service.business; |  |   |  | import com.doumee.dao.business.model.MemberRides; |  | import com.doumee.dao.business.web.response.PricingRuleDTO; |  |   |  | import java.util.List; |  |   |  | /** |  |  * |  |  * 获取计价规则 |  |  * @author T14 |  |  */ |  | public interface PricingRuleService { |  |   |  |   |  |     /** |  |      * 获取获取计价规则 |  |      * @param goodaorderId |  |      * @return |  |      */ |  |     PricingRuleDTO getPricingRule(String goodaorderId); |  |   |  |   |  |     PricingRuleDTO getPricingRule(List<MemberRides> memberRidesList); |  |   |  | } | 
 |