package model type ArchDiscountLimitConf struct { Conf ArchDiscountLimitCommonConf `json:"conf"` StageConf ArchDiscountLimitStageConf `json:"stageConf"` } type ArchDiscountLimitStageConf struct { Discounts []ArchDiscountLimitStage `json:"discounts"` Limit int64 `json:"limit"` } type ArchDiscountLimitStage struct { BuildingId int64 `json:"buildingId"` DisNum int64 `json:"disNum"` } type ArchDiscountLimitCommonConf struct { PosterDiscount int64 `json:"posterDiscount"` }