|
|
@@ -16,7 +16,8 @@ type LiveBroad struct {
|
|
|
Id int64 `orm:"column(id);pk" json:"id"` // int(11)
|
|
|
|
|
|
Title string `orm:"column(title)" json:"title"`
|
|
|
- RoomId int64 `orm:"column(room_id)" json:"room_id"` // int(11)
|
|
|
+ RoomId int64 `orm:"column(room_id)" json:"room_id"` // int(11)
|
|
|
+ Recommend int64 `orm:"column(recommend)" json:"recommend"` // int(11)
|
|
|
Cover string `orm:"column(cover)" json:"cover"`
|
|
|
BeginDate time.Time `orm:"column(begin_time);null;type(datetime)" json:"begin_time"` // datetime
|
|
|
EndDate time.Time `orm:"column(end_time);null;type(datetime)" json:"end_time"` // datetime
|