team.go 533 B

123456789101112131415161718192021222324
  1. package model
  2. // PairKey def
  3. type PairKey struct {
  4. Label string `json:"label"`
  5. Value string `json:"value"`
  6. }
  7. // TeamInfoResp def
  8. type TeamInfoResp struct {
  9. Department []*PairKey `json:"department"`
  10. Business []*PairKey `json:"business"`
  11. }
  12. // Developer def
  13. type Developer struct {
  14. Department string `json:"department"`
  15. Total int `json:"total"`
  16. Android int `json:"android"`
  17. Ios int `json:"ios"`
  18. Web int `json:"web"`
  19. Service int `json:"service"`
  20. Other int `json:"other"`
  21. }