Commit 4316bd76 by 孙亚楠

dd

parent bbeb1104
...@@ -114,5 +114,10 @@ class MerchantCtl extends CtlBase { ...@@ -114,5 +114,10 @@ class MerchantCtl extends CtlBase {
} }
} }
async getFeeTypeWithCache(params, pobj2, req){
let res = await this.merchantSve.getFeeTypeWithCache(params);
return system.getResult({type: res});
}
} }
module.exports = MerchantCtl; module.exports = MerchantCtl;
...@@ -194,16 +194,16 @@ class System { ...@@ -194,16 +194,16 @@ class System {
merchant: dev + ":3101" + path, merchant: dev + ":3101" + path,
// 订单服务 // 订单服务
order: local + ":3103" + path, order: dev + ":3103" + path,
// 发票服务 // 发票服务
invoice: local + ":3105" + path, invoice: dev + ":3105" + path,
// 用户服务 // 用户服务
uc: dev + ":3106" + path, uc: dev + ":3106" + path,
// 交易 // 交易
trade: local + ":3107" + path, trade: dev + ":3107" + path,
} }
} else { } else {
return { return {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment