You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
253 B
Go
11 lines
253 B
Go
![]()
3 weeks ago
|
package admin
|
||
|
|
||
|
type AdminDto struct {
|
||
|
AdminId uint64 `json:"adminId"`
|
||
|
Username string `json:"username"`
|
||
|
Phone string `json:"phone"`
|
||
|
Roles []string `json:"roles"`
|
||
|
Password string `json:"password"`
|
||
|
Status int8 `json:"status"`
|
||
|
}
|