| 123456789101112131415161718192021222324 | ////  GoodsBannerModel.h//  westkissMob////  Created by 王猛 on 2022/9/14.//#import <Foundation/Foundation.h>NS_ASSUME_NONNULL_BEGINtypedef NS_ENUM(NSUInteger,CellContentType){    CellContentTypeImg  ,    CellContentTypeVideo    } ;@interface GoodsBannerModel : NSObject@property(nonatomic, assign) CellContentType cellType;@property (nonatomic, copy) NSString *url;@property (nonatomic, copy) NSString *label;+(GoodsBannerModel *)xxx_loadWithModel:(NSDictionary *)bannerDic;@endNS_ASSUME_NONNULL_END
 |