13 lines
483 B
Go
13 lines
483 B
Go
|
package dbstruct
|
||
|
|
||
|
// banner
|
||
|
type Banner struct {
|
||
|
Id int64 `json:"id" bson:"_id"` // banner id
|
||
|
ImgUrl string `json:"img_url" bson:"img_url"` // banner图片
|
||
|
VideoUrl string `json:"video_url" bson:"video_url"` // banner视频
|
||
|
JumpRouter string `json:"jump_router" bson:"jump_router"` // 跳转链接
|
||
|
Ct int64 `json:"ct" bson:"ct"`
|
||
|
Ut int64 `json:"ut" bson:"ut"`
|
||
|
DelFlag int `json:"del_flag" bson:"del_flag"`
|
||
|
}
|