123456789101112131415161718192021222324252627282930 |
- //
- // PayInRealityTableViewCell.h
- // LN_School
- //
- // Created by apple on 2017/4/21.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PayInRealityTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *orderNumLabel;
- @property (weak, nonatomic) IBOutlet UILabel *stuNameLabel;
- @property (weak, nonatomic) IBOutlet UILabel *priceLabel;
- @property (weak, nonatomic) IBOutlet UILabel *cashierLabel;
- @property (weak, nonatomic) IBOutlet UILabel *stateLabel;
- @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
- @property (nonatomic, strong) NSDictionary *dataDic;
- @end
|