Commit 89f8fe3d by 王栋源

wdy

parent 13ba8a9a
const TaskBase = require("../../task.base");
const system = require("../../../system");
var settings = require("../../../../config/settings");
class TmreportTask extends TaskBase {
constructor() {
super(TaskBase.getServiceName(TmreportTask));
this.restclient = system.getObject("util.restClient");
this.centerChannelUrl = settings.centerChannelUrl();
}
async beforeTask(params) {
console.log("前置操作......", this.serviceName);
//this.isThrough=true;
//console.log(this.cacheManager);
}
async subDoTask() {
console.log("--------------");
console.log("TestTask1.....");
var obj = {
"actionType": "Taskalirpcagainpush",
"actionBody": {
"limit": 100 //推送数据条数 默认100条
}
}
try {
var url = this.centerChannelUrl + "api/auth/taskapi/taskAlijsonfile";
var transferinfo = await this.restclient.execPost(obj, url);
console.log(rtn);
return rtn;
} catch (error) {
console.log(error);
return null;
}
}
}
module.exports = TmreportTask;
\ No newline at end of file
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