mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-17 23:36:26 -05:00
25 lines
533 B
Go
25 lines
533 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// PairKey def
|
||
|
|
type PairKey struct {
|
||
|
|
Label string `json:"label"`
|
||
|
|
Value string `json:"value"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// TeamInfoResp def
|
||
|
|
type TeamInfoResp struct {
|
||
|
|
Department []*PairKey `json:"department"`
|
||
|
|
Business []*PairKey `json:"business"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// Developer def
|
||
|
|
type Developer struct {
|
||
|
|
Department string `json:"department"`
|
||
|
|
Total int `json:"total"`
|
||
|
|
Android int `json:"android"`
|
||
|
|
Ios int `json:"ios"`
|
||
|
|
Web int `json:"web"`
|
||
|
|
Service int `json:"service"`
|
||
|
|
Other int `json:"other"`
|
||
|
|
}
|