123456789101112131415161718192021 |
- //
- // Rep_DetailCell.h
- // LN_School
- //
- // Created by EchoShacolee on 2017/6/15.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface Rep_DetailCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *carNun;
- @property (weak, nonatomic) IBOutlet UILabel *time;
- @property (weak, nonatomic) IBOutlet UILabel *reason;
- @property (weak, nonatomic) IBOutlet UILabel *remark;
- +(Rep_DetailCell *)cellForTableView:(UITableView *)tableView;
- @property(nonatomic,strong)NSDictionary * dic;
- @end
|