act_choose_one.go 461 B

12345678910111213141516171819
  1. package model
  2. type ChooseOneRepoConf struct {
  3. Gid []int64 `json:"gid"`
  4. Data map[int64]ChooseOneStageConf `json:"data"`
  5. }
  6. type ChooseOneStageConf struct {
  7. Price float64 `json:"gprice"`
  8. Sku string `json:"gsku"`
  9. Discount float64 `json:"gdiscount"`
  10. Gid int64 `json:"gid"`
  11. Prize []ActPrize `json:"prize"`
  12. }
  13. type ChooseOneShowConf struct {
  14. OneLayerSsGroup
  15. Reward []ChooseOneStageConf `json:"reward"`
  16. }