12345678910111213141516171819 |
- //
- // ShenHeCell.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/12.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ShenHeCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *typeLab;
- @property (weak, nonatomic) IBOutlet UILabel *trainTimeLab;
- @property (weak, nonatomic) IBOutlet UILabel *shenheType;
- @property (weak, nonatomic) IBOutlet UILabel *shenheTime;
- -(void)updataWithDic:(NSDictionary *)dic;
- @end
|