第二代基于事件的高级计划排程引擎
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.

10 lines
202 B

3 years ago
  1. package service
  2. import "time"
  3. // 调度任务,对应订单工序
  4. type SchedTaskSrv struct{
  5. PlanStartTime time.Time
  6. PlanEndTime time.Time
  7. Operation *OperationSrv // 对订单工序的引用
  8. }