GoodsBannerModel.m 540 B

123456789101112131415161718192021222324
  1. //
  2. // GoodsBannerModel.m
  3. // westkissMob
  4. //
  5. // Created by 王猛 on 2022/9/14.
  6. //
  7. #import "GoodsBannerModel.h"
  8. @implementation GoodsBannerModel
  9. + (GoodsBannerModel *)xxx_loadWithModel:(NSDictionary *)bannerDic{
  10. GoodsBannerModel *model = [[GoodsBannerModel alloc]init];
  11. model.url = bannerDic[@"url"];
  12. model.label = bannerDic[@"label"];
  13. if([bannerDic[@"type"] isEqualToString:@"mp4"]){
  14. model.cellType = CellContentTypeVideo;
  15. }else{
  16. model.cellType = CellContentTypeImg;
  17. }
  18. return model;
  19. }
  20. @end