15 lines
319 B
Go
15 lines
319 B
Go
package plant
|
|
|
|
import (
|
|
"sundynix-go/global"
|
|
"time"
|
|
)
|
|
|
|
type Topic struct {
|
|
global.BaseModel
|
|
Title string `json:"title"`
|
|
StartTime time.Time `json:"startTime" gorm:"type:date;column:start_time;"`
|
|
EndTime time.Time `json:"endTime" gorm:"type:date;column:end_time;"`
|
|
Remark string `json:"remark"`
|
|
}
|