MinRecordeCell.h 635 B

123456789101112131415161718192021
  1. //
  2. // MinRecordeCell.h
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/14.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface MinRecordeCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *speed;
  11. @property (weak, nonatomic) IBOutlet UILabel *status;
  12. @property (weak, nonatomic) IBOutlet UILabel *time;
  13. @property (weak, nonatomic) IBOutlet UILabel *phoneNum;
  14. @property (weak, nonatomic) IBOutlet UILabel *mile;
  15. @property (weak, nonatomic) IBOutlet UILabel *reason;
  16. @property (weak, nonatomic) IBOutlet UILabel *reasonTitle;
  17. -(void)upDataWithDic:(NSDictionary *)dic;
  18. @end