WarDetailCell.h 483 B

12345678910111213141516171819
  1. //
  2. // WarDetailCell.h
  3. // LN_School
  4. //
  5. // Created by EchoShacolee on 2017/8/12.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface WarDetailCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *LicNumLab;
  11. @property (weak, nonatomic) IBOutlet UILabel *statuLab;
  12. @property (weak, nonatomic) IBOutlet UILabel *simLab;
  13. @property (weak, nonatomic) IBOutlet UILabel *dateLab;
  14. @property(nonatomic,strong)NSDictionary *dic;
  15. @end