| | |
| | | package com.qxueyou.scc.base.model; |
| | | |
| | | /** |
| | | * 流量定价实体类 |
| | | * 流量定价实体类 |
| | | * @author zhanglinqing |
| | | * |
| | | */ |
| | | public class FlowPrice { |
| | | |
| | | /** 流量规格值 */ |
| | | /** 流量规格值 */ |
| | | public static final int FLOW_VALUE_10 = 10; |
| | | public static final int FLOW_VALUE_30 = 30; |
| | | public static final int FLOW_VALUE_70 = 70; |
| | |
| | | public static final int FLOW_VALUE_3072 = 3072; |
| | | public static final int FLOW_VALUE_4096 = 4096; |
| | | |
| | | /** 流量定价值 */ |
| | | /** 流量定价值 */ |
| | | public static final double FLOW_PRICING_VALUE_10 = 0.2400; |
| | | public static final double FLOW_PRICING_VALUE_30 = 0.0800; |
| | | public static final double FLOW_PRICING_VALUE_70 = 0.1000; |
| | |
| | | public static final double FLOW_PRICING_VALUE_3072 = 0.0234; |
| | | public static final double FLOW_PRICING_VALUE_4096 = 0.0234; |
| | | |
| | | /** 折后售价 */ |
| | | /** 折后售价 */ |
| | | public static final double FLOW_PRICE_10 = 2.4; |
| | | public static final double FLOW_PRICE_30 = 4; |
| | | public static final double FLOW_PRICE_70 = 8; |