Commit f1f1c881 by wang

fix

parent 6f79295a
Showing with 2 additions and 1 deletions
......@@ -9,6 +9,7 @@ import (
"github.com/tidwall/gjson"
"go_upload_sync/app/dao"
ls "go_upload_sync/util/lib"
"time"
)
/**
......@@ -210,7 +211,7 @@ func (this *UploadSkuSync) PushStatus3HandleList(uploadInfo *dao.UpdatesUploadSt
data:=make(map[string]interface{})
data["supplier_code"]=uploadInfo.SupplierCode
data["action_time"]=uploadInfo.ActionTime
data["end_time"]=uploadInfo.EndTime
data["end_time"]=time.Now().Unix()
bytes,err:=json.Marshal(data)
if(err!=nil){
msg:=fmt.Sprintf("推送下架队列,解析主日志为json报错")
......
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 sign in to comment