act_arch_discount.go 343 B

123456789101112131415
  1. package model
  2. type ArchDiscountRepoConf struct {
  3. Level int64 `json:"level"`
  4. DisNum int64 `json:"disNum"`
  5. }
  6. type ArchDiscountPosterConf struct {
  7. PosterDiscount int64 `json:"posterDiscount"`
  8. }
  9. type ArchDiscountShowConf struct {
  10. BaseConf []ArchDiscountRepoConf `json:"baseConf"`
  11. PosterConf ArchDiscountPosterConf `json:"posterConf"`
  12. }