// // TrainPriceListCell.h // LN_School // // Created by EchoShacolee on 2017/4/19. // Copyright © 2017年 Danson. All rights reserved. // #import @interface TrainPriceListCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *type; @property (weak, nonatomic) IBOutlet UILabel *price; @property (weak, nonatomic) IBOutlet UILabel *shoufei; @property (weak, nonatomic) IBOutlet UILabel *trainTime; @property (weak, nonatomic) IBOutlet UILabel *train; @property (weak, nonatomic) IBOutlet UILabel *record; @property (weak, nonatomic) IBOutlet UILabel *subject; -(void)upDataWithDic:(NSDictionary *)dic; @end