no message
parent
f6f418e44f
commit
c90b44b2c5
|
@ -9,6 +9,21 @@ import (
|
||||||
"log"
|
"log"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
type Plan struct {
|
||||||
|
ID uint32 `gorm:"column:id;primary_key" json:"id"`
|
||||||
|
StartTime utils.OrmTime `gorm:"column:start_time" json:"start_time"`
|
||||||
|
EndTime utils.OrmTime `gorm:"column:end_time" json:"end_time"`
|
||||||
|
Date utils.OrmTime `gorm:"column:date" json:"date"`
|
||||||
|
Content string `gorm:"column:content" json:"content"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Plan) TableName() string {
|
||||||
|
return "plan"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
type Users struct {
|
type Users struct {
|
||||||
ID int64 `sql:"id" json:"id"`
|
ID int64 `sql:"id" json:"id"`
|
||||||
UserName string `sql:"user_name" json:"user_name"`
|
UserName string `sql:"user_name" json:"user_name"`
|
||||||
|
|
Loading…
Reference in New Issue