| 123456789101112131415161718192021 |
- //
- // GuWenCell.h
- // jitao
- //
- // Created by 罗云飞 on 2018/8/19.
- // Copyright © 2018年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "GUWenlistModel.h"
- @interface GuWenCell : UITableViewCell
- @property(nonatomic,copy)UIImageView *headimage;
- @property(nonatomic,copy)UILabel *name;
- @property(nonatomic,copy)UILabel *ZJtitile;
- @property(nonatomic,copy)UILabel *neirong;
- @property(nonatomic,copy)UILabel *HPLtitle;
- @property(nonatomic,copy)UIButton *guanzhu;
- @property(nonatomic,copy)UILabel *guanzhuNumber;
- - (void)assignment:(GUWenlistModel *)model;
- @end
|