O2InformationParameters.swift 595 B

123456789101112131415161718192021222324252627
  1. //
  2. // O2InformationParameters.swift
  3. // o2app
  4. //
  5. // Created by 刘振兴 on 2017/12/28.
  6. // Copyright © 2017年 zone. All rights reserved.
  7. //
  8. import Foundation
  9. // MARK:- 读取Section列表参数
  10. class O2InformationCategoryListParameter {
  11. var categoryIdList:[String]?
  12. var pageParameter:CommonPageParameter?
  13. func getParamDict() -> Dictionary<String,Any> {
  14. return ["categoryIdList":self.categoryIdList!]
  15. }
  16. }
  17. class O2InformationHomeParameter {
  18. var pageParameter:CommonPageParameter?
  19. init() {
  20. pageParameter = CommonPageParameter()
  21. }
  22. }