| 123456789101112131415161718192021 |
- //
- // RelationGoodsVC.h
- // yunbaolive
- //
- // Created by IOS1 on 2019/8/30.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import "YBBaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^RelationGoodsBlock)(NSString *goodsName,NSString *goodsid);
- @interface RelationGoodsVC : YBBaseViewController
- @property (nonatomic,assign) BOOL isVideo;
- @property (nonatomic,assign) BOOL isOtherSale;
- @property (nonatomic,strong) NSString *selectID;
- @property (nonatomic,copy) RelationGoodsBlock block;
- @property (nonatomic, strong)NSMutableArray *haveGoods;
- @end
- NS_ASSUME_NONNULL_END
|