1234567891011121314151617181920212223 |
- //
- // StudentListCell.h
- // LNManager
- //
- // Created by apple on 2017/5/5.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface StudentListCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
- @property (weak, nonatomic) IBOutlet UILabel *carTypeLabel;
- @property (weak, nonatomic) IBOutlet UILabel *dateLabel;
- @property (nonatomic, strong) NSDictionary *dataDic;
- @end
|