StudentListCell.h 440 B

1234567891011121314151617181920212223
  1. //
  2. // StudentListCell.h
  3. // LNManager
  4. //
  5. // Created by apple on 2017/5/5.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface StudentListCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  11. @property (weak, nonatomic) IBOutlet UILabel *carTypeLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *dateLabel;
  13. @property (nonatomic, strong) NSDictionary *dataDic;
  14. @end