TrainPriceListCell.h 646 B

12345678910111213141516171819202122
  1. //
  2. // TrainPriceListCell.h
  3. // LN_School
  4. //
  5. // Created by EchoShacolee on 2017/4/19.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TrainPriceListCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *type;
  11. @property (weak, nonatomic) IBOutlet UILabel *price;
  12. @property (weak, nonatomic) IBOutlet UILabel *shoufei;
  13. @property (weak, nonatomic) IBOutlet UILabel *trainTime;
  14. @property (weak, nonatomic) IBOutlet UILabel *train;
  15. @property (weak, nonatomic) IBOutlet UILabel *record;
  16. @property (weak, nonatomic) IBOutlet UILabel *subject;
  17. -(void)upDataWithDic:(NSDictionary *)dic;
  18. @end