SPSBQueryListDetailsTransactionTableViewController.h 746 B

123456789101112131415161718192021222324252627
  1. //
  2. // SPSBQueryListDetailsTransactionTableViewController.h
  3. // 我的社保
  4. //
  5. // Created by jiaxian_he on 2021/5/29.
  6. //
  7. #import "SPSBTableViewController.h"
  8. typedef NS_ENUM(NSInteger, SPSBQueryListDetailsTransactionType) {
  9. SPSBQueryListDetailsTransactionTypeOrderBalance,
  10. SPSBQueryListDetailsTransactionTypeRefund
  11. };
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface SPSBQueryListDetailsTransactionTableViewController : SPSBTableViewController
  14. @property (nonatomic, assign) SPSBQueryListDetailsTransactionType spsb_type;
  15. @property (nonatomic, strong, nullable) NSArray *spsb_orderBalanceData;
  16. @property (nonatomic, strong, nullable) NSArray *spsb_refundData;
  17. @property (nonatomic, assign) bool spsb_isHaveWaitForPay;
  18. @end
  19. NS_ASSUME_NONNULL_END