act_architecture.go 470 B

123456789101112131415161718
  1. package model
  2. type ArchitectureRepoConf struct {
  3. Stage int64 `json:"stage"`
  4. Lv int64 `json:"lv"`
  5. Prize []ActPrize `json:"prize"`
  6. }
  7. type ArchitectureStaticConf struct {
  8. Rewards []ArchitectureStaticInfo `json:"rewards"`
  9. ActCouponSkin string `json:"act_coupon_skin"`
  10. Type string `json:"type"`
  11. }
  12. type ArchitectureStaticInfo struct {
  13. Key int64 `json:"key"`
  14. Value []PrizeShow `json:"value"`
  15. }