Commit e943ef20 by zhaoxiqing

gsb

parent e412c834
......@@ -27,6 +27,14 @@ class MerchantaccountCtl extends CtlBase {
}
}
async merchantAccountList(params, pobj2, req) {
try {
return await this.merchantSve.merchantAccountList(params);
} catch (error) {
return system.getResult(null, `系统错误 错误信息 ${error}`);
}
}
}
......
......@@ -22,6 +22,14 @@ class MerchantaccountService extends ServiceBase {
}
}
async merchantAccountList(params) {
try {
return await this.callms("sve_merchant", "merchantAccountList", params);
} catch (error) {
return system.getResult(null, `系统错误 错误信息 ${error}`);
}
}
}
module.exports = MerchantaccountService;
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