// // SPSBQueryListDetailsTransactionTableViewController.h // 我的社保 // // Created by jiaxian_he on 2021/5/29. // #import "SPSBTableViewController.h" typedef NS_ENUM(NSInteger, SPSBQueryListDetailsTransactionType) { SPSBQueryListDetailsTransactionTypeOrderBalance, SPSBQueryListDetailsTransactionTypeRefund }; NS_ASSUME_NONNULL_BEGIN @interface SPSBQueryListDetailsTransactionTableViewController : SPSBTableViewController @property (nonatomic, assign) SPSBQueryListDetailsTransactionType spsb_type; @property (nonatomic, strong, nullable) NSArray *spsb_orderBalanceData; @property (nonatomic, strong, nullable) NSArray *spsb_refundData; @property (nonatomic, assign) bool spsb_isHaveWaitForPay; @end NS_ASSUME_NONNULL_END