123456789101112131415161718 |
- //
- // packageRoolCell.h
- // shiku_im
- //
- // Created by 123 on 2020/4/30.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "packageRoolModel.h"
-
- @interface packageRoolCell : UITableViewCell
-
- +(instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic,strong) packageRoolModel *model;
- @end
-
|