mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 20:58:14 -05:00
25 lines
482 B
Go
25 lines
482 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
// CtxKeyIsUserLogin ..
|
|
const CtxKeyIsUserLogin = "ckiul"
|
|
|
|
// CtxKeyOauth2State ..
|
|
const CtxKeyOauth2State = "cko2s"
|
|
|
|
// Common ..
|
|
type Common struct {
|
|
ID uint64 `gorm:"primary_key"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
DeletedAt *time.Time `sql:"index"`
|
|
}
|
|
|
|
// Response ..
|
|
type Response struct {
|
|
Code uint64 `json:"code,omitempty"`
|
|
Message string `json:"message,omitempty"`
|
|
Result interface{} `json:"result,omitempty"`
|
|
}
|