Commit 82001e25 by zhaoxiqing

gsn

parent a995a74a
......@@ -21,6 +21,16 @@ class merchantCtl extends CtlBase {
return system.getResult(null, `系统错误 错误信息 ${error}`);
}
}
async merchantToIdsInfo(params, pobj2, req){
try {
return await this.merchantSve.merchantToIdsInfo(params);
} catch (error) {
console.log(error);
return system.getResult(null, `系统错误 错误信息 ${error}`);
}
}
}
module.exports = merchantCtl;
......@@ -13,6 +13,13 @@ class merchantService extends ServiceBase {
return system.getResult(null, `系统错误 错误信息 ${error}`);
}
}
async merchantToIdsInfo(params) {
try {
return await this.callms("sve_merchant", "merchantToIdsInfo", params);
} catch (error) {
return system.getResult(null, `系统错误 错误信息 ${error}`);
}
}
}
module.exports = merchantService;
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