| 123456789101112131415161718192021 |
- //
- // JLHongDianCell.h
- // shiku_im
- //
- // Created by liyangyang-pc on 17/3/3.
- // Copyright © 2017年 UAS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class JLMsgModel;
- @interface JLHongDianCell : UITableViewCell
- +(instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic ,strong) JLMsgModel * model;
- @property (nonatomic ,copy) NSString * type;
- @end
|