act_arch_discount_limit.go 517 B

1234567891011121314151617181920
  1. package model
  2. type ArchDiscountLimitConf struct {
  3. Conf ArchDiscountLimitCommonConf `json:"conf"`
  4. StageConf ArchDiscountLimitStageConf `json:"stageConf"`
  5. }
  6. type ArchDiscountLimitStageConf struct {
  7. Discounts []ArchDiscountLimitStage `json:"discounts"`
  8. Limit int64 `json:"limit"`
  9. }
  10. type ArchDiscountLimitStage struct {
  11. BuildingId int64 `json:"buildingId"`
  12. DisNum int64 `json:"disNum"`
  13. }
  14. type ArchDiscountLimitCommonConf struct {
  15. PosterDiscount int64 `json:"posterDiscount"`
  16. }