28 lines
711 B
Objective-C
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
|