zhangqian
2023-10-20 a699ff979c84d024ca33fb1139224258f278319f
model/request/task.go
@@ -18,11 +18,17 @@
}
type SendProcessParams struct {
   ProcedureId int   `json:"procedureId" binding:"required"`
   Channel     int32 `json:"channel"`
   ProcedureId uint `json:"procedureId" binding:"required"`
}
type GetProductProgress struct {
   ProcedureId int   `json:"procedureId" binding:"required"`
   Channel     int32 `json:"channel"`
}
// ProcessModelList 工艺参数列表请求参数
type ProcessModelList struct {
   PageInfo
   ProcedureId uint   `json:"procedureId" form:"procedureId" binding:"required"` //当前的工序id
   Number      string `json:"number" form:"number"  binding:"required"`          //当前正在使用的工艺参数编号
}