ERPHandleTaskCell.h 493 B

1234567891011121314151617181920
  1. //
  2. // ERPHandleTaskCell.h
  3. // shiku_im
  4. //
  5. // Created by on 17/4/1.
  6. // Copyright © 2017年 UAS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ERPHandleTaskModle.h"
  10. @interface ERPHandleTaskCell : UITableViewCell
  11. @property(nonatomic,strong) ERPHandleTaskModle * 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