mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
16 lines
300 B
Go
16 lines
300 B
Go
|
|
package model
|
||
|
|
|
||
|
|
//UserRole role
|
||
|
|
type UserRole struct {
|
||
|
|
UID int64 `json:"uid"`
|
||
|
|
Name string `json:"username"`
|
||
|
|
Role int8 `json:"role"`
|
||
|
|
}
|
||
|
|
|
||
|
|
//UserDepart department
|
||
|
|
type UserDepart struct {
|
||
|
|
UID int64 `json:"uid"`
|
||
|
|
Name string `json:"username"`
|
||
|
|
Department string `json:"department"`
|
||
|
|
}
|