// // TeachLogCell.h // LNManager // // Created by EchoShacolee on 2017/4/12. // Copyright © 2017年 lee. All rights reserved. // #import @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