B2BHandleTaskCell.h 493 B

12345678910111213141516171819
  1. //
  2. // B2BHandleTaskCell.h
  3. // shiku_im
  4. //
  5. // Created by on 17/3/29.
  6. // Copyright © 2017年 UAS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "B2BHandleTaskModle.h"
  10. @interface B2BHandleTaskCell : UITableViewCell
  11. @property(nonatomic,strong) B2BHandleTaskModle * modle;
  12. @property (nonatomic,strong) UILabel *nameLbl;
  13. @property (nonatomic,strong) UILabel *statuLbl;
  14. @property (nonatomic,strong) UILabel *timeLbl;
  15. + (instancetype)cellWithTableView:(UITableView *)tableView;
  16. @end