Files
yuyin_ios/SweetParty/主类/RCMic/Room/Box/猫咪探险/DengAchieveCell.m
2025-08-08 11:05:33 +08:00

29 lines
624 B
Objective-C

//
// DengAchieveCell.m
// romantic
//
// Created by bj_szd on 2023/7/19.
// Copyright © 2023 romantic. All rights reserved.
//
#import "DengAchieveCell.h"
@implementation DengAchieveCell
- (void)awakeFromNib {
[super awakeFromNib];
}
- (void)setModel:(DengAchieveModel *)model {
_model = model;
self.orderLab.text = [NSString stringWithFormat:@"第%@批", model.nbl_sn];
[self.giftImgV sd_setImageWithURL:[NSURL URLWithString:model.base_image]];
self.giftNameLab.text = model.gift_name;
self.coinNumLab.text = model.total_amount;
self.touruNumLab.text = model.amount;
}
@end