| 12345678910111213141516171819 |
- //
- // B2BHandleTaskCell.h
- // shiku_im
- //
- // Created by on 17/3/29.
- // Copyright © 2017年 UAS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "B2BHandleTaskModle.h"
- @interface B2BHandleTaskCell : UITableViewCell
- @property(nonatomic,strong) B2BHandleTaskModle * modle;
- @property (nonatomic,strong) UILabel *nameLbl;
- @property (nonatomic,strong) UILabel *statuLbl;
- @property (nonatomic,strong) UILabel *timeLbl;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @end
|