| 1234567891011121314151617181920212223 |
- //
- // NewFWXMCell.h
- // jitao
- //
- // Created by 罗云飞 on 2018/8/30.
- // Copyright © 2018年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "NewFWXMModel.h"
- @interface NewFWXMCell : UITableViewCell
- @property(nonatomic,copy)UIImageView *imageview;
- @property(nonatomic,copy)UILabel *title;
- @property(nonatomic,copy)UIButton *guanzhuBT;
- @property(nonatomic,copy)UILabel *guanzhuNumber;
- @property(nonatomic,copy)UILabel *neirong;
- @property(nonatomic,copy)UILabel *jiage;
- @property(nonatomic,copy)UILabel *gongsi;
- @property(nonatomic,copy)UIButton *banliBT;
- - (void)assignment:(NewFWXMModel *)model;
- @end
|