abtest.go 716 B

12345678910111213141516171819202122232425262728293031
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // AB AB测试实验
  6. type AB struct {
  7. ID int `json:"id"`
  8. Name string `json:"name"`
  9. Desc string `json:"desc"`
  10. Stra Stra `json:"stra"`
  11. Seed int `json:"seed"`
  12. Result int `json:"result"`
  13. Status int `json:"status"`
  14. Version int `json:"version"`
  15. Group int `json:"group"`
  16. Author string `json:"author"`
  17. Modifier string `json:"modifier"`
  18. CreateTime time.Time `json:"ctime"`
  19. ModifyTime time.Time `json:"mtime"`
  20. }
  21. // Stat .
  22. type Stat struct {
  23. New map[int]map[int]int `json:"now"`
  24. Old map[int]map[int]int `json:"last"`
  25. }
  26. // Empty .
  27. type Empty struct{}