酷店

ALPTBShopParam.h 410B

123456789101112131415161718192021222324252627
  1. //
  2. // ALPTBShopParam.h
  3. // ALPLinkPartnerSDK
  4. //
  5. // Created by czp on 16/9/22.
  6. // Copyright © 2016年 czp. All rights reserved.
  7. //
  8. #import "ALPTBJumpParam.h"
  9. @interface ALPTBShopParam : ALPTBJumpParam
  10. /**
  11. * shopId,要跳转到的店铺
  12. */
  13. @property (nonatomic, strong) NSString *shopId;
  14. /**
  15. * 初始化,shopId必传
  16. *
  17. * @param shopId
  18. */
  19. -(instancetype)initWithShopId:(NSString *)shopId;
  20. @end