Files
yuyin_ios/SweetParty/主类/Mine/Wallet/LMTixianRecordTableViewCell.h
2025-08-08 11:05:33 +08:00

28 lines
711 B
Objective-C

//
// LMTixianRecordTableViewCell.h
// SweetParty
//
// Created by Xmac on 2024/9/25.
//
#import <UIKit/UIKit.h>
#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