| 123456789101112131415161718192021222324 | ////  GoodsBannerModel.m//  westkissMob////  Created by 王猛 on 2022/9/14.//#import "GoodsBannerModel.h"@implementation GoodsBannerModel+ (GoodsBannerModel *)xxx_loadWithModel:(NSDictionary *)bannerDic{    GoodsBannerModel *model = [[GoodsBannerModel alloc]init];    model.url = bannerDic[@"url"];    model.label = bannerDic[@"label"];    if([bannerDic[@"type"] isEqualToString:@"mp4"]){        model.cellType = CellContentTypeVideo;    }else{        model.cellType = CellContentTypeImg;    }    return model;}@end
 |