// // ASGoodsCouponCell.h // Asteria // // Created by xingyu on 2024/5/20. // #import #import "GoodsInformationM.h" @class ASGoodsCouponItemView, ASGoodsCouponModel; NS_ASSUME_NONNULL_BEGIN @interface ASGoodsCouponCell : TT_BaseCell - (void)configData:(id)Data isSelect:(BOOL)isSelect; @end @interface ASGoodsCouponItemView : UIView @property (nonatomic, strong) ASGoodsCouponModel *couponModel; @end @interface ASGoodsCouponModel : NSObject @property (nonatomic, copy) NSString *code; @property (nonatomic, copy) NSString *value; @property (nonatomic, copy) NSString *detail; @property (nonatomic, copy) NSString *gt; @property (nonatomic, assign) NSInteger type; //code = MY15; //value = 5; //detail = get $5 OFF ; //gt = For Order ≥ $199; //type = 2; @end NS_ASSUME_NONNULL_END