Create & Init Project...

This commit is contained in:
2019-04-22 18:49:16 +08:00
commit fc4fa37393
25440 changed files with 4054998 additions and 0 deletions

View File

@ -0,0 +1,43 @@
package model
import (
arcmdl "go-common/app/service/main/archive/api"
)
// Bnj2019 .
type Bnj2019 struct {
*Bnj2019View
Elec *ElecShow `json:"elec"`
Related []*Bnj2019Related `json:"related"`
ReqUser *ReqUser `json:"req_user"`
}
// Bnj2019View .
type Bnj2019View struct {
*arcmdl.Arc
Pages []*arcmdl.Page `json:"pages"`
}
// Bnj2019Related .
type Bnj2019Related struct {
*arcmdl.Arc
Pages []*arcmdl.Page `json:"pages"`
}
// ReqUser req user.
type ReqUser struct {
Attention bool `json:"attention"`
Favorite bool `json:"favorite"`
Like bool `json:"like"`
Dislike bool `json:"dislike"`
Coin int64 `json:"coin"`
}
// Timeline bnj timeline.
type Timeline struct {
Name string `json:"name"`
Start int64 `json:"start"`
End int64 `json:"end"`
Cover string `json:"cover"`
H5Cover string `json:"h5_cover"`
}