25 lines
519 B
C
25 lines
519 B
C
|
|
//
|
||
|
|
// ZXYRankCell.h
|
||
|
|
// romantic
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2023/7/19.
|
||
|
|
// Copyright © 2023 romantic. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "DDCaiAllRecordModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface ZXYRankCell : UITableViewCell
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *valueLab;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) DDCaiAllRecordModel *model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|