SPSBPurchaserOrderListPayViewController.h 654 B

123456789101112131415161718192021222324252627
  1. //
  2. // SPSBPurchaserOrderListPayViewController.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/6/21.
  6. //
  7. #import "SPSBOrderListPayViewController.h"
  8. @class SPSBOrderListModel;
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSUInteger, SPSBPurchaserOrderListPayType) {
  11. SPSBPurchaserOrderListPayTypePay,
  12. SPSBPurchaserOrderListPayTypeDetails
  13. };
  14. @interface SPSBPurchaserOrderListPayViewController : SPSBOrderListPayViewController
  15. @property (nonatomic, strong) SPSBOrderListModel *spsb_data;
  16. @property (nonatomic, assign) SPSBPurchaserOrderListPayType spsb_type;
  17. @property (nonatomic, assign) NSInteger spsb_discountCount;
  18. @end
  19. NS_ASSUME_NONNULL_END