|
@@ -53,6 +53,10 @@ func Task() {
|
|
|
sendWaitReport := task.NewTask("sendWaitReport", "0 */1 * * * * ", SendWaitReport)
|
|
|
task.AddTask("定时往同花顺推送报告", sendWaitReport)
|
|
|
|
|
|
+ //初始化指标更新状态
|
|
|
+ resetEdbInfoIsUpdate := task.NewTask("resetEdbInfoIsUpdate", "0 0 0 * * *", data.ResetEdbInfoIsUpdate)
|
|
|
+ task.AddTask("resetEdbInfoIsUpdate", resetEdbInfoIsUpdate)
|
|
|
+
|
|
|
task.StartTask()
|
|
|
//GetHistoryLzProductDetail()
|
|
|
//GetLzPrice()
|
|
@@ -136,10 +140,6 @@ func releaseTask() {
|
|
|
|
|
|
checkPbDataInterface := task.NewTask("checkPbDataInterface", "0 */5 * * * * ", data.CheckPbDataInterface)
|
|
|
task.AddTask("checkPbDataInterface", checkPbDataInterface)
|
|
|
-
|
|
|
- //初始化指标更新状态
|
|
|
- resetEdbInfoIsUpdate := task.NewTask("resetEdbInfoIsUpdate", "0 0 0 * * *", data.ResetEdbInfoIsUpdate)
|
|
|
- task.AddTask("resetEdbInfoIsUpdate", resetEdbInfoIsUpdate)
|
|
|
}
|
|
|
|
|
|
func TaskTest() {
|