ShenHeCell.h 479 B

12345678910111213141516171819
  1. //
  2. // ShenHeCell.h
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/12.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ShenHeCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *typeLab;
  11. @property (weak, nonatomic) IBOutlet UILabel *trainTimeLab;
  12. @property (weak, nonatomic) IBOutlet UILabel *shenheType;
  13. @property (weak, nonatomic) IBOutlet UILabel *shenheTime;
  14. -(void)updataWithDic:(NSDictionary *)dic;
  15. @end