| 12345678910111213141516171819202122232425262728293031 |
- //
- // OrderGoodsSinglePromotionDetailCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/9/9.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "InventoryListModel.h"
- @interface OrderGoodsSinglePromotionDetailCell : UITableViewCell<UITextFieldDelegate>
- @property(nonatomic,strong) UIButton *btnCheck;
- @property(nonatomic,strong) UIButton *btnOptionCombinationCheck;
- @property(nonatomic,assign) CGFloat height;
- @property(nonatomic,assign) NSInteger position;
- @property (weak) id<SalesOrderDelegate> delegate;
- - (void) setCheckBackground: (BOOL) checked;
- -(void)setCombinationBackground:(BOOL) checked;
- -(void)setPromotionGoodsDetailCell:(InventoryListModel*)goodsModel isCanChoose:(BOOL)canChoose;
- @end
|