Commit ad0b0d64 by 王昆

gsb

parent de532279
......@@ -71,7 +71,9 @@ class MerchantCtl extends CtlBase {
async userInfo(params, pobj2, req) {
try {
return await this.merchantuserSve.info(params);
let rs = await this.merchantuserSve.info(params);
await this.merchantSve.setMerchant([rs.data]);
return system.getResultSuccess(rs);
} catch (error) {
return system.getResult(null, `系统错误 错误信息 ${error}`);
}
......
......@@ -121,17 +121,6 @@
``` javascript
{
"id": "", // id,为空或者不填写该字段时新增,指定具体id时修改
"merchantId" :"11064624178480175", // 商户id
"taxNo": "杨庆菊客户的税号", // 纳税人识别号
"invoiceAddr": "杨庆菊客户的地址", // 开票地址
"invoiceMobile": "杨庆菊客户开票手机号", // 开票电话
"accountName": "杨庆菊客户的账户名称", // 开户名称
"accountPublic": "杨庆菊客户的对公账户", // 对公账户
"isDefault" : true, // 是否设置默认
}
{
"id": 0, // id,为空或者不填写该字段时新增,指定具体id时修改
"name": "name2", // 主体名称
"bank_account": "bank_accoun2", // 账户名称
......
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