// // BillCell.h // yunbaolive // // Created by ybRRR on 2020/2/6. // Copyright © 2020 cat. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface BillCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *priceLb; @property (weak, nonatomic) IBOutlet UILabel *timeLb; @property (weak, nonatomic) IBOutlet UILabel *statusLb; @property (strong, nonatomic)NSDictionary *infoDic; +(BillCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath *)indexPath; @end NS_ASSUME_NONNULL_END