HMHotBannerModel.h 615 B

1234567891011121314151617181920212223242526
  1. //
  2. // HMHotBannerModel.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/7/5.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseModel.h"
  9. @interface HMHotBannerModel : BGBaseModel
  10. @property (nonatomic, copy) NSString *title;
  11. @property (nonatomic, copy) NSString *image;
  12. @property (nonatomic, assign) NSInteger type;
  13. @property (nonatomic, copy) NSString *url;
  14. @property (nonatomic, assign) NSInteger show_id;
  15. @property (nonatomic, assign) float image_width;
  16. @property (nonatomic, assign) float image_height;
  17. /**
  18. 计算广告栏的高度
  19. */
  20. @property (nonatomic, assign) float bannerHeight;
  21. @end