zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.changhong.epc.constter.count.nomr;
 
import com.changhong.epc.constter.system.SystemMsgConst;
 
public interface CountUrlConst extends SystemMsgConst {
 
    /**
     * 返回空值url
     */
    String RESULT_NULL_URL         = "count/result/null";
    
    /**
     * 抛出异常url
     */
    String THROW_EXECTION_URL     = "count/throw/exection";
    
    String COUNT_DATAS            = "count/datas";
    
    /**
     * 计算费用
     */
    String COUNT_COST_URL       =  "countCost";
 
    /**
     * 计算系统变量
     */
    String COUNT_SYSTEM_URL       =  "systemCost";
 
    String SYSTEM_FUNC_ALL        =  "select/allFunc";
    
    String CHECK_JOINBILLPERSION=  "checkJoinBillPersion";
    
    /**
     * 获取公式
     */
    String COUNT_SYSTEM_FUNC_GETFUNCTION = "getFunction";
 
    /**
     * 计算费用和系统变量
     */
    String COUNT_AND_SYSTEM_COST_URL = "countAndSystem";
}