You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
398 B

  1. package cache
  2. type SchedulerCache struct {
  3. TaskId string `bson:"taskId" json:"taskId"` //任务Id
  4. WorkLineId string `bson:"workLineId" json:"workLineId"` //产线ID
  5. Data string `bson:"data" json:"data"` //保存的数据
  6. CreateBy string `bson:"createBy" json:"createBy"` //创建人
  7. CreateTime string `bson:"createTime" json:"createTime"` //创建时间
  8. }