Commit 4b745df1 by zhaoxiqing

gsb

parent 7c1b5ba6
...@@ -9,6 +9,7 @@ class MerchantaccountCtl extends CtlBase { ...@@ -9,6 +9,7 @@ class MerchantaccountCtl extends CtlBase {
constructor() { constructor() {
super(); super();
this.merchantaccountSve = system.getObject("service.merchant.merchantaccountSve"); this.merchantaccountSve = system.getObject("service.merchant.merchantaccountSve");
this.merchantSve = system.getObject("service.merchant.merchantSve");
} }
async reduceAccountBalance(params, pobj2, req) { async reduceAccountBalance(params, pobj2, req) {
...@@ -29,7 +30,7 @@ class MerchantaccountCtl extends CtlBase { ...@@ -29,7 +30,7 @@ class MerchantaccountCtl extends CtlBase {
async merchantAccountList(params, pobj2, req) { async merchantAccountList(params, pobj2, req) {
try { try {
return await this.merchantSve.merchantAccountList(params); return await this.merchantaccountSve.merchantAccountList(params);
} catch (error) { } catch (error) {
return system.getResult(null, `系统错误 错误信息 ${error}`); return system.getResult(null, `系统错误 错误信息 ${error}`);
} }
......
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