12345678910111213141516171819 |
- //
- // WarDetailCell.h
- // LN_School
- //
- // Created by EchoShacolee on 2017/8/12.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface WarDetailCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *LicNumLab;
- @property (weak, nonatomic) IBOutlet UILabel *statuLab;
- @property (weak, nonatomic) IBOutlet UILabel *simLab;
- @property (weak, nonatomic) IBOutlet UILabel *dateLab;
- @property(nonatomic,strong)NSDictionary *dic;
- @end
|