1234567891011121314151617181920212223242526272829303132333435 |
- //
- // ASCheckoutPointApplyCell.h
- // Asteria
- //
- // Created by xingyu on 2024/5/8.
- //
- #import <WMBase/WMBase.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASCheckoutPointData : NSObject
- @property (nonatomic, copy) NSString *pointCountInput;
- @property (nonatomic, copy) NSString *pointBalance;
- //积分兑换比例
- @property (nonatomic, copy) NSString *pointScale;
- @property (nonatomic, copy) NSString *priceScale;
- @property (nonatomic, copy) NSString *priceSymbol;
- //已使用积分数量及对应金额
- @property (nonatomic, copy) NSString *usePoint;
- @property (nonatomic, copy) NSString *usePrice;
- //@property (nonatomic, copy) NSString *usePoint;
- @end
- @interface ASCheckoutPointApplyCell : TT_BaseCell
- @property (nonatomic, strong) ASCheckoutPointData *pointCellData;
- @end
- NS_ASSUME_NONNULL_END
|