123456789101112131415161718192021222324252627282930 |
- //
- // 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 *nameLabel;
- @property (weak, nonatomic) IBOutlet UILabel *subjectlabel;
- @property (weak, nonatomic) IBOutlet UILabel *trainTimeLabel;
- @property (weak, nonatomic) IBOutlet UILabel *mileAgeLabel;
- @property (weak, nonatomic) IBOutlet UILabel *dateLabel;
- @property (weak, nonatomic) IBOutlet UILabel *classIdlabel;
- @property (weak, nonatomic) IBOutlet UILabel *stuNumberLabel;
- -(void)setDataWithDic:(NSDictionary *)dic;
- @end
|