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";
|
}
|