| 123456789101112131415161718192021222324 |
- //
- // CollectionCGCell.h
- // jitao
- //
- // Created by 罗云飞 on 2018/8/13.
- // Copyright © 2018年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "NewshoucangModel.h"
- @interface CollectionCGCell : UITableViewCell
- @property(copy,nonatomic)UILabel *title;
- @property(copy,nonatomic)UILabel *titledetail;
- @property(copy,nonatomic)UILabel *titlestauts;
- @property(copy,nonatomic)UIButton *CollectionBT;
- @property(copy,nonatomic)UILabel *CollectionNumber;
- @property(copy,nonatomic)UILabel *label;
- @property(copy,nonatomic)UILabel *label1;
- - (void)assignment:(NewshoucangModel *)model type:(NSString *)type;
- @end
|