mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-14 13:20:25 +08:00
20 lines
361 B
Go
20 lines
361 B
Go
|
|
package vo
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/base/model"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type AccountManageVO struct {
|
||
|
|
model.Model
|
||
|
|
Username *string `json:"username"`
|
||
|
|
Status int `json:"status"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type AccountRoleVO struct {
|
||
|
|
Name *string `json:"name"`
|
||
|
|
Status int `json:"status"`
|
||
|
|
CreateTime *time.Time `json:"createTime"`
|
||
|
|
Creator string `json:"creator"`
|
||
|
|
}
|