TeachLogCell.h 981 B

12345678910111213141516171819202122232425262728293031323334
  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 *classId;
  11. @property (weak, nonatomic) IBOutlet UILabel *startTime;
  12. @property (weak, nonatomic) IBOutlet UILabel *endTime;
  13. @property (weak, nonatomic) IBOutlet UILabel *stuNum;
  14. @property (weak, nonatomic) IBOutlet UILabel *checkMan;
  15. @property (weak, nonatomic) IBOutlet UILabel *reason;
  16. @property (weak, nonatomic) IBOutlet UILabel *checkTime;
  17. @property (weak, nonatomic) IBOutlet UILabel *status;
  18. @property (weak, nonatomic) IBOutlet UILabel *kumu;
  19. @property (weak, nonatomic) IBOutlet UILabel *trainTime;
  20. @property (weak, nonatomic) IBOutlet UILabel *trainKMeters;
  21. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *kemuTop;
  22. -(void)setDataWithDic:(NSDictionary *)dic;
  23. + (CGFloat)heightForDic:(NSDictionary *)dic;
  24. @end