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

27 lines
572 B
Objective-C
Executable File

//
// SPGonghuiRoomListCell.m
// SweetParty
//
// Created by bj_szd on 2022/6/29.
//
#import "SPGonghuiRoomListCell.h"
@implementation SPGonghuiRoomListCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
- (void)setModel:(SPGonghuiDetailListModel *)model {
_model = model;
[self.imgV sd_setImageWithURL:[NSURL URLWithString:model.room_cover] placeholderImage:kDefaultUserIcon];
self.nameLab.text = model.room_name;
self.IDLab.text = model.room_number;
self.hotLab.text = model.total_gift_total_price;
}
@end