StudentListCell.h 497 B

12345678910111213141516171819202122232425
  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 *sexLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *carTypeLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *dateLabel;
  14. @property (nonatomic, strong) NSDictionary *dataDic;
  15. @end