APViewController.h 747 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // APViewController.h
  3. // AliSDKDemo
  4. //
  5. // Created by 方彬 on 11/29/13.
  6. // Copyright (c) 2013 Alipay.com. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //
  10. //测试商品信息封装在Product中,外部商户可以根据自己商品实际情况定义
  11. //
  12. @interface Product : NSObject{
  13. @private
  14. float _price;
  15. NSString *_subject;
  16. NSString *_body;
  17. NSString *_orderId;
  18. }
  19. @property (nonatomic, assign) float price;
  20. @property (nonatomic, copy) NSString *subject;
  21. @property (nonatomic, copy) NSString *body;
  22. @property (nonatomic, copy) NSString *orderId;
  23. @end
  24. @interface APViewController : UIViewController
  25. @property(nonatomic, strong)NSMutableArray *productList;
  26. @property (nonatomic, strong) NSDictionary *orderDic;
  27. @end