12345678910111213141516171819202122 |
- //
- // TrainPriceListCell.h
- // LN_School
- //
- // Created by EchoShacolee on 2017/4/19.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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
|