task_cache.go 233 B

12345678
  1. package entity
  2. type TaskCache struct {
  3. UserId string `json:"userId"`
  4. UserParallelism int64 `json:"userParallelism"`
  5. AlgorithmObjectKey string `json:"algorithmObjectKey"`
  6. Task Task `json:"task"`
  7. }