OrderGoodsSinglePromotionDetailCell.h 755 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // OrderGoodsSinglePromotionDetailCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/9/9.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "InventoryListModel.h"
  10. @interface OrderGoodsSinglePromotionDetailCell : UITableViewCell<UITextFieldDelegate>
  11. @property(nonatomic,strong) UIButton *btnCheck;
  12. @property(nonatomic,strong) UIButton *btnOptionCombinationCheck;
  13. @property(nonatomic,assign) CGFloat height;
  14. @property(nonatomic,assign) NSInteger position;
  15. @property (weak) id<SalesOrderDelegate> delegate;
  16. - (void) setCheckBackground: (BOOL) checked;
  17. -(void)setCombinationBackground:(BOOL) checked;
  18. -(void)setPromotionGoodsDetailCell:(InventoryListModel*)goodsModel isCanChoose:(BOOL)canChoose;
  19. @end