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.

29 lines
735 B

  1. package report
  2. import "time"
  3. type AWMDisplay struct {
  4. Title string `json:"title"`
  5. Uom string `json:"uom"`
  6. Avg float64 `json:"avg"`
  7. Start string `json:"start"`
  8. End string `json:"end"`
  9. Standard float64 `json:"standard"`
  10. UseField string `json:"useField"`
  11. Data []FilterDataInfo `json:"data"`
  12. Capacity int `json:"capacity"`
  13. MU string `json:"mu"`
  14. Cate string `json:"cate"`
  15. MuTitle string `json:"muTitle"`
  16. MuUom string `json:"muUom"`
  17. }
  18. const (
  19. DISPLAY_SOURCE_ARC = "ARC"
  20. )
  21. type ListElement struct {
  22. Start time.Time
  23. End time.Time
  24. Duration time.Duration
  25. }