123456789101112131415161718192021222324 |
- //
- // TeachLogCell.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/12.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface TeachLogCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *classId;
- @property (weak, nonatomic) IBOutlet UILabel *startTime;
- @property (weak, nonatomic) IBOutlet UILabel *endTime;
- @property (weak, nonatomic) IBOutlet UILabel *stuNum;
- @property (weak, nonatomic) IBOutlet UILabel *kumu;
- @property (weak, nonatomic) IBOutlet UILabel *trainTime;
- @property (weak, nonatomic) IBOutlet UILabel *trainKMeters;
- -(void)setDataWithDic:(NSDictionary *)dic;
- @end
|