MyCartGrandTotalCell.h 925 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // MyCartGrandTotalCell.h
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2024/2/2.
  6. //
  7. #import <WMBase/WMBase.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class SubtotalCellItemV;
  10. @class SubLoastSelectItemV;
  11. @interface MyCartGrandTotalCellData : NSObject
  12. @property (nonatomic, strong) NSMutableArray *total_segments;
  13. @property (nonatomic, strong) NSString *currency_symbol;
  14. @end
  15. @interface MyCartGrandTotalCell : TT_BaseCell
  16. @property (nonatomic, strong) MyCartGrandTotalCellData *totalData;
  17. @end
  18. @interface SubtotalCellItemV : TT_BaseV
  19. @property (nonatomic, strong) UILabel *tipsLab;
  20. @property (nonatomic, strong) UILabel *priceLab;
  21. -(void)xxx_configTips:(NSString *)tips price:(NSString *)priceStr;
  22. @end
  23. @interface SubLoastSelectItemV : TT_BaseV
  24. @property (nonatomic, strong) UILabel *tipsLab;
  25. @property (nonatomic, strong) UIButton *ridoBtn;
  26. - (void)xxx_configTips:(NSString *)tips isLost:(BOOL)isLost;
  27. @end
  28. NS_ASSUME_NONNULL_END