| 123456789101112131415161718192021 |
- //
- // lookVGoodsDView.h
- // YBVideo
- //
- // Created by IOS1 on 2019/7/8.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface lookVGoodsDView : UIView
- -(instancetype)initWithGoodsMsg:(NSDictionary *)dic;
- @property (nonatomic,strong) NSString *videoid; //废弃--->改为 goodsid
- @property(nonatomic,strong)NSString *goodsID; //商品id
- @property(nonatomic,strong)NSString *videoUid; //视频作者id
- @end
- NS_ASSUME_NONNULL_END
|