Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package archive
import xtime "go-common/library/time"
// Pconfig str
type Pconfig struct {
ID int64 `json:"id"`
Tp int8 `json:"type"`
Name string `json:"name"`
}
// PorderArc str
type PorderArc struct {
AID int64 `json:"aid"`
IndustryID int64 `json:"industry_id"`
BrandID int64 `json:"brand_id"`
BrandName string `json:"brand_name"`
Official int8 `json:"official"`
ShowType string `json:"show_type"`
Advertiser string `json:"advertiser"`
Agent string `json:"agent"`
State int8 `json:"state"`
ShowFront int8 `json:"show_front"`
Ctime xtime.Time `json:"ctime"`
Mtime xtime.Time `json:"mtime"`
}