| 1234567891011121314151617 |
- //
- // RecordTableViewCell.h
- // BuguLive
- //
- // Created by yy on 16/7/21.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface RecordTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *moneyLable;
- @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
- @property (weak, nonatomic) IBOutlet UILabel *recordStateLable;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @end
|