SPSBAppProfileModel.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // SPSBAppProfileModel.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/4/27.
  6. //
  7. #import "SPSBBaseNetworkModel.h"
  8. @class SPSBHomeViewADModel, SPSBHomeViewButtonsModel;
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SPSBAppPopImageModel : SPSBBaseNetworkModel
  11. @property (nonatomic, readonly, strong) NSString *spsb_img;
  12. @property (nonatomic, readonly, strong) NSString *spsb_link;
  13. @end
  14. @interface SPSBAppVersionModel : SPSBBaseNetworkModel
  15. @property (nonatomic, readonly, strong) NSString *spsb_desc;
  16. @property (nonatomic, readonly, strong) NSString *spsb_force;
  17. @property (nonatomic, readonly, strong) NSString *spsb_force_version;
  18. @property (nonatomic, readonly, strong) NSString *spsb_update_url;
  19. @property (nonatomic, readonly, strong) NSString *spsb_version;
  20. @end
  21. @interface SPSBAppProfileModel : SPSBBaseNetworkModel
  22. @property (nonatomic, readonly, strong) NSArray<SPSBHomeViewADModel *> *spsb_ads;
  23. @property (nonatomic, readonly, strong) NSArray<SPSBHomeViewADModel *> *spsb_index_policy;
  24. @property (nonatomic, readonly, strong) NSArray *spsb_barList;
  25. @property (nonatomic, readonly, strong) NSArray *spsb_uriList;
  26. @property (nonatomic, readonly, strong) NSString *spsb_city;
  27. @property (nonatomic, readonly, strong) NSString *spsb_move_city;
  28. @property (nonatomic, readonly, strong) SPSBAppPopImageModel *spsb_pop_img;
  29. @property (nonatomic, readonly, strong) NSString *spsb_query;
  30. @property (nonatomic, readonly, strong) NSString *spsb_tel;
  31. @property (nonatomic, readonly, strong) SPSBAppVersionModel *spsb_v;
  32. @property (nonatomic, readonly, strong) NSString *spsb_wxpay_limit;
  33. @property (nonatomic, readonly, strong) SPSBHomeViewButtonsModel *spsb_entranceFlag;
  34. @end
  35. NS_ASSUME_NONNULL_END