mirror of
https://gitee.com/gokins/gokins.git
synced 2024-11-29 17:57:50 +08:00
19 lines
385 B
Go
19 lines
385 B
Go
package bean
|
|
|
|
import "time"
|
|
|
|
type LogOutJson struct {
|
|
Id string `json:"id"`
|
|
Content string `json:"content"`
|
|
Times time.Time `json:"times"`
|
|
Errs bool `json:"errs"`
|
|
}
|
|
type LogOutJsonRes struct {
|
|
Id string `json:"id"`
|
|
Content string `json:"content"`
|
|
Times time.Time `json:"times"`
|
|
Errs bool `json:"errs"`
|
|
|
|
Offset int64 `json:"offset"`
|
|
}
|