From d9be9b803a63623d44c1c0b23cb64542c328a4ac Mon Sep 17 00:00:00 2001 From: louwenzhi Date: Wed, 23 Jun 2021 09:49:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0model?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- models/cache/SchedulerCache.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 models/cache/SchedulerCache.go 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"` //创建时间 +}