porder.go 703 B

1234567891011121314151617181920212223242526
  1. package archive
  2. import xtime "go-common/library/time"
  3. // Pconfig str
  4. type Pconfig struct {
  5. ID int64 `json:"id"`
  6. Tp int8 `json:"type"`
  7. Name string `json:"name"`
  8. }
  9. // PorderArc str
  10. type PorderArc struct {
  11. AID int64 `json:"aid"`
  12. IndustryID int64 `json:"industry_id"`
  13. BrandID int64 `json:"brand_id"`
  14. BrandName string `json:"brand_name"`
  15. Official int8 `json:"official"`
  16. ShowType string `json:"show_type"`
  17. Advertiser string `json:"advertiser"`
  18. Agent string `json:"agent"`
  19. State int8 `json:"state"`
  20. ShowFront int8 `json:"show_front"`
  21. Ctime xtime.Time `json:"ctime"`
  22. Mtime xtime.Time `json:"mtime"`
  23. }