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