Files
sundynix-plant-be/model/plant/community_post_topic.go
T
2026-02-07 15:52:54 +08:00

15 lines
301 B
Go

package plant
import (
"sundynix-go/global"
"time"
)
type Topic struct {
global.BaseModel
Title string `json:"title"`
StartTime time.Time `json:"start_time" gorm:"column:start_time;"`
EndTime time.Time `json:"end_time" gorm:"column:end_time;"`
Remark string `json:"remark"`
}