Files
mayfly-go/server/sys/apis/vo/account.go

20 lines
361 B
Go
Raw Normal View History

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"`
}