TeachLogCell.h 679 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // TeachLogCell.h
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/12.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TeachLogCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  11. @property (weak, nonatomic) IBOutlet UILabel *subjectlabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *trainTimeLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *mileAgeLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *dateLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *classIdlabel;
  16. @property (weak, nonatomic) IBOutlet UILabel *stuNumberLabel;
  17. -(void)setDataWithDic:(NSDictionary *)dic;
  18. @end