diff --git a/models/cache/SchedulerCache.go b/models/cache/SchedulerCache.go new file mode 100644 index 0000000..66c2d7c --- /dev/null +++ b/models/cache/SchedulerCache.go @@ -0,0 +1,9 @@ +package cache + +type SchedulerCache struct { + TaskId string `bson:"taskId" json:"taskId"` //任务Id + WorkLineId string `bson:"workLineId" json:"workLineId"` //产线ID + Data string `bson:"data" json:"data"` //保存的数据 + CreateBy string `bson:"createBy" json:"createBy"` //创建人 + CreateTime string `bson:"createTime" json:"createTime"` //创建时间 +}