123456789101112131415161718192021222324252627 |
- //
- // SPSBPurchaserOrderListPayViewController.h
- // 我的社保
- //
- // Created by shanp on 2021/6/21.
- //
- #import "SPSBOrderListPayViewController.h"
- @class SPSBOrderListModel;
- NS_ASSUME_NONNULL_BEGIN
- typedef NS_ENUM(NSUInteger, SPSBPurchaserOrderListPayType) {
- SPSBPurchaserOrderListPayTypePay,
- SPSBPurchaserOrderListPayTypeDetails
- };
- @interface SPSBPurchaserOrderListPayViewController : SPSBOrderListPayViewController
- @property (nonatomic, strong) SPSBOrderListModel *spsb_data;
- @property (nonatomic, assign) SPSBPurchaserOrderListPayType spsb_type;
- @property (nonatomic, assign) NSInteger spsb_discountCount;
- @end
- NS_ASSUME_NONNULL_END
|