GoodsSizeCountCell.h 424 B

1234567891011121314151617181920212223
  1. //
  2. // GoodsSizeCountCell.h
  3. // westkissMob
  4. //
  5. // Created by 王猛 on 2022/9/23.
  6. //
  7. #import "TT_BaseCell.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface GoodsSizeCountCellData : NSObject
  10. @property (nonatomic, assign) NSInteger quantityNum;
  11. @property (nonatomic, assign) NSInteger maxNum;
  12. @end
  13. @interface GoodsSizeCountCell : TT_BaseCell
  14. @property (nonatomic, strong) GoodsSizeCountCellData *model;
  15. @end
  16. NS_ASSUME_NONNULL_END