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

17 lines
405 B
Go

package request
type CreateTopic struct {
Title string `json:"title"`
StartTime string `json:"start_time"`
EndTime string `json:"end_time"`
Remark string `json:"remark"`
}
type UpdateTopic struct {
Id int `json:"id" binding:"required"`
Title string `json:"title"`
StartTime string `json:"start_time"`
EndTime string `json:"end_time"`
Remark string `json:"remark"`
}