PayInRealityTableViewCell.h 648 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // PayInRealityTableViewCell.h
  3. // LN_School
  4. //
  5. // Created by apple on 2017/4/21.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PayInRealityTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *orderNumLabel;
  11. @property (weak, nonatomic) IBOutlet UILabel *stuNameLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *priceLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *cashierLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *stateLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  16. @property (nonatomic, strong) NSDictionary *dataDic;
  17. @end