| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | ////  ASGoodsCouponCell.h//  Asteria////  Created by xingyu on 2024/5/20.//#import <WMBase/WMBase.h>#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;@endNS_ASSUME_NONNULL_END
 |