// // LMTixianRecordTableViewCell.h // SweetParty // // Created by Xmac on 2024/9/25. // #import #import "LMTixianRecordListModel.h" NS_ASSUME_NONNULL_BEGIN static NSString *LMTixianRecordTableViewCellID = @"LMTixianRecordTableViewCellID"; @interface LMTixianRecordTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *txTitleLabel; @property (weak, nonatomic) IBOutlet UILabel *txStatusLabel; @property (weak, nonatomic) IBOutlet UILabel *txTimeLabel; @property (weak, nonatomic) IBOutlet UILabel *txMoneyLabel; @property (weak, nonatomic) IBOutlet UILabel *txYueLabel; @property (nonatomic, strong) LMTixianRecordListModel *model; @end NS_ASSUME_NONNULL_END