Commit f0441e77 by 王栋源

wdy

parent 643e200d
const TaskBase = require("../task.base");
var system = require("../../system")
const logCtl = system.getObject("web.oplogCtl");
class TmDynamicsAllotTask extends TaskBase {
constructor() {
super(TaskBase.getServiceName(TmDynamicsAllotTask));
this.bytmdynamicsSve = system.getObject("service.bytmdynamicsSve");
}
async subDoTask() {
await this.execSend();
}
async execSend() {
var tmp = await this.bytmdynamicsSve.notifyWxTmDynamics();
//日志记录
logCtl.info({
optitle: "商标监控动态数量增加微信通知执行结果",
op: "base/db/task/TmDynamicsAllotTask.js",
content: "执行结果:" + tmp,
clientIp: ""
});
}
}
module.exports = TmDynamicsAllotTask;
const TaskBase = require("../task.base");
var system = require("../../system")
const logCtl = system.getObject("web.oplogCtl");
class TmMonitAllotTask extends TaskBase {
constructor() {
super(TaskBase.getServiceName(TmMonitAllotTask));
this.bytmmonitSve = system.getObject("service.bytmmonitSve");
}
async subDoTask() {
await this.execSend();
}
async execSend() {
console.log("cehishi ewhcihhscxheikjhc");
// var tmp = await this.bytmmonitSve.getMonitAll();
//日志记录
logCtl.info({
optitle: "商标监控动态执行结果",
op: "base/db/task/TmMonitAllotTask.js",
content: "执行结果:" + tmp,
clientIp: ""
});
}
}
module.exports = TmMonitAllotTask;
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