Files
yuyin_ios/SweetParty/主类/Mine/GongHui/SPGonghuiListCell.m
2025-08-08 11:05:33 +08:00

27 lines
579 B
Objective-C
Executable File

//
// SPGonghuiListCell.m
// SweetParty
//
// Created by bj_szd on 2022/6/29.
//
#import "SPGonghuiListCell.h"
@implementation SPGonghuiListCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
- (void)setModel:(SPGonghuiListModel *)model {
_model = model;
[self.imgV sd_setImageWithURL:[NSURL URLWithString:model.cover] placeholderImage:kDefaultUserIcon];
self.nameLab.text = model.guild_name;
self.valueLab.text = model.total_gift_total_price;
self.num.text = [NSString stringWithFormat:@"%@人",model.num];
}
@end