master
Evan Chen 2021-12-21 19:23:34 +08:00
parent 601e596980
commit 2f27f72450
1 changed files with 24 additions and 0 deletions

24
calendar/calendar.go Normal file
View File

@ -0,0 +1,24 @@
package calendar
import "time"
type Calendar struct {
ID uint `gorm:"primaryKey"`
CreatedAt time.Time
UpdatedAt time.Time
}
type EventGroup struct {
ID uint `gorm:"primaryKey"`
CreatedAt time.Time
UpdatedAt time.Time
}
type Event struct {
ID uint `gorm:"primaryKey"`
CreatedAt time.Time
UpdatedAt time.Time
}