Commit a8dc991e by 任晓松

update

parent 7bdf0f86
...@@ -30,6 +30,9 @@ class TmQueryAPI extends WEBBase { ...@@ -30,6 +30,9 @@ class TmQueryAPI extends WEBBase {
case "test"://测试 case "test"://测试
opResult = system.getResultSuccess(null, "测试成功"); opResult = system.getResultSuccess(null, "测试成功");
break; break;
case "tmTest":
opResult = await this.tmquerySve.test(pobj);
break;
case "findTrademarkNameAccurate"://商标精确检索(相同商标检索) case "findTrademarkNameAccurate"://商标精确检索(相同商标检索)
opResult = await this.tmquerySve.findTrademarkNameAccurate(action_body, req); opResult = await this.tmquerySve.findTrademarkNameAccurate(action_body, req);
break; break;
......
...@@ -150,5 +150,12 @@ class TmqueryService { ...@@ -150,5 +150,12 @@ class TmqueryService {
return data; return data;
} }
async test(pobj){
let url = settings.centerOrderUrl() + 'notifyaction/internalCallsNotify/updateTmStatus';
let result = await this.execClient.execPost(pobj.actionBody,url);
return result;
}
} }
module.exports = TmqueryService; module.exports = TmqueryService;
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