up_group.go 704 B

12345678910111213141516171819202122232425262728
  1. package model
  2. const (
  3. //UpperTypeWhite 优质
  4. UpperTypeWhite int8 = 1
  5. //UpperTypeBlack 高危
  6. UpperTypeBlack int8 = 2
  7. //UpperTypePGC 生产组
  8. UpperTypePGC int8 = 3
  9. //UpperTypeUGCX don't know
  10. UpperTypeUGCX int8 = 3
  11. //UpperTypePolitices 时政
  12. UpperTypePolitices int8 = 5
  13. //UpperTypeEnterprise 企业
  14. UpperTypeEnterprise int8 = 7
  15. //UpperTypeSigned 签约
  16. UpperTypeSigned int8 = 15
  17. )
  18. //UPGroup up主所属的所有特殊用户组
  19. type UPGroup struct {
  20. ID int64 `json:"id"`
  21. Tag string `json:"tag"`
  22. ShortTag string `json:"short_tag"`
  23. FontColor string `json:"font_color"` //字体颜色
  24. BgColor string `json:"bg_color"` //背景颜色
  25. Note string `json:"note"`
  26. }