Version: V20170922
变更记录
Redis结构
Key值 |
类型 |
说明 |
S2I_SYSTEM_CONFIG_TABLE |
Map |
系统配置 |
系统配置值说明
键 |
默认值 |
说明 |
transaction_fee |
10 |
交易费 默认10元 |
cost_rate |
0.005 |
成本费率 千5 |
tax_rate |
0.06 |
税金 百6 |
score_rate |
0.02 |
积分兑换率 百2 |
channel_rate |
0.04 |
销售渠道费率 百4 |
接口
利润计算
127.0.0.1:8103/servlet/calculateprofit
RequestBody
{
"channel":"", //渠道
"provincename":"北京市", //车险省份
"cityname":"北京市", //车险城市
"businesspre":"2480", //商业险费用
"jqxpre":"955", //交强险费用
"sumpre":"3780", //总费用
"sellsumpre":"3580", //销售价格
"score":"1000" //所用东航积分
}
ResponseBody
{
"statusCode": "000000",
"result": {
"businessprerebate": 892.8, //商业险佣金
"jqxprerebate": 38.2, //交强险佣金
"sumprerebate": 931, //总佣金
"rebatetax": 55.86, //佣金税额
"costfee": 18.9, //成本费用
"transactionfee": 10, //交易费用
"score": 1000, //使用东航积分
"exchangescore": 20, //积分兑换现金额度
"scoretax": 1.2, //积分税额
"actualpayment": 3436.8, //实际付款
"actualprofit": 501.84, //实际利润
"maxprofit": 503.04, //最大利润
"minprofit": 288.24 //最小利润
}
}