zhangqian
2023-09-13 0457f96716de8125560f332fcf718100b9f754eb
model/common/common.go
@@ -44,9 +44,10 @@
      StartTime         int64                `gorm:"comment:计划开始时间" json:"startTime"`
      EndTime           int64                `gorm:"comment:计划结束时间" json:"endTime"`
      WorkHours         decimal.Decimal      `gorm:"type:decimal(35,18);comment:工时" json:"workHours"`
      InputMaterials    []*ProcedureMaterial `json:"inputMaterials"`  // 输入物料列表
      OutputMaterials   []*ProcedureMaterial `json:"outputMaterials"` // 输出物料列表
      Workers           []*ProcedureWorker   `json:"workers"`         // 人员列表
      InputMaterials    []*ProcedureMaterial `json:"inputMaterials"`    // 输入物料列表
      OutputMaterials   []*ProcedureMaterial `json:"outputMaterials"`   // 输出物料列表
      Workers           []*ProcedureWorker   `json:"workers"`           // 人员列表
      AllProcedureNames []string             `json:"allProcedureNames"` // 所属工单工序列表
   }
   DeliverScheduleTask struct {