EleOneCell.h 1.0 KB

123456789101112131415161718192021222324252627282930
  1. //
  2. // EleOneCell.h
  3. // JSJPCoach
  4. //
  5. // Created by EchoShacolee on 2018/1/31.
  6. // Copyright © 2018年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface EleOneCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *stuName;
  11. @property (weak, nonatomic) IBOutlet UILabel *history;
  12. @property (weak, nonatomic) IBOutlet UILabel *type;
  13. @property (weak, nonatomic) IBOutlet UILabel *time;
  14. @property (weak, nonatomic) IBOutlet UILabel *allTime;
  15. @property (weak, nonatomic) IBOutlet UILabel *status1;
  16. @property (weak, nonatomic) IBOutlet UILabel *status2;
  17. @property (weak, nonatomic) IBOutlet UILabel *status3;
  18. @property (weak, nonatomic) IBOutlet UILabel *status4;
  19. @property (weak, nonatomic) IBOutlet UILabel *checkMan;
  20. @property (weak, nonatomic) IBOutlet UILabel *reason;
  21. @property (weak, nonatomic) IBOutlet UILabel *checkTime;
  22. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *statusTop;
  23. @property(nonatomic,assign)NSInteger kemu;
  24. @property(nonatomic,strong)NSDictionary *dataDic;
  25. @end