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