18 lines
447 B
Go
18 lines
447 B
Go
package dbstruct
|
|
|
|
// 目录下发
|
|
type L2CatalogIndex struct {
|
|
L1Id int64 `json:"l1_id" bson:"l1_id"`
|
|
L2Id int64 `json:"l2_id" bson:"l2_id"`
|
|
Idx int `json:"idx" bson:"idx"` // 顺序
|
|
Ct int64 `json:"ct" bson:"ct"`
|
|
Ut int64 `json:"ut" bson:"ut"`
|
|
}
|
|
|
|
type BannerIndex struct {
|
|
Id int64 `json:"id" bson:"id"` // banner id
|
|
Idx int `json:"idx" bson:"idx"` // 顺序
|
|
Ct int64 `json:"ct" bson:"ct"`
|
|
Ut int64 `json:"ut" bson:"ut"`
|
|
}
|