新UI马甲包

HCCommunityModel.h 937B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // HCCommunityModel.h
  3. // hc
  4. //
  5. // Created by hc on 2018/5/16.
  6. // Copyright © 2018年 hc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "HCCommunityDetailModel.h"
  10. @interface HCCommunityModel : NSObject
  11. @property (nonatomic, copy) NSString *Id; // y一键分享时将该id传递出来
  12. @property (nonatomic, copy) NSString *name; // d对应名称
  13. @property (nonatomic, copy) NSString *img; // d对应logo
  14. @property (nonatomic, copy) NSString *note; // d对应各个图片
  15. @property (nonatomic, strong) NSNumber *update_time; //更新时间
  16. @property (nonatomic, strong) NSArray<HCCommunityDetailModel *> *detail; // t图片列表
  17. //新增
  18. @property (nonatomic, copy) NSString *banner; // d专题类型对应的banner
  19. @property (nonatomic, copy) NSString *show_type; // 1表示专题类型 2表示普通类型
  20. @end