StuExamListCell.h 640 B

1234567891011121314151617181920212223
  1. //
  2. // StuExamListCell.h
  3. // LN_School
  4. //
  5. // Created by EchoShacolee on 2017/6/25.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface StuExamListCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *name;
  11. @property (weak, nonatomic) IBOutlet UILabel *subject;
  12. @property (weak, nonatomic) IBOutlet UILabel *score;
  13. @property (weak, nonatomic) IBOutlet UILabel *start;
  14. @property (weak, nonatomic) IBOutlet UILabel *end;
  15. @property (weak, nonatomic) IBOutlet UILabel *sfzh;
  16. +(instancetype)cellForTableView:(UITableView *)tableView;
  17. @property(nonatomic,strong)NSDictionary *dic;
  18. @end