InventoryGoodsSearchCell.h 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // InventoryGoodsSearchCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/2/2.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "OrderListDelegate.h"
  10. #import "InventoryListModel.h"
  11. #import "NSString+Tools.h"
  12. @interface InventoryGoodsSearchCell : UITableViewCell
  13. @property(nonatomic,strong)UIButton *btnCheck;
  14. @property(nonatomic,strong)UILabel *lblGoodsName;
  15. @property(nonatomic,strong)UILabel *lblGoodsCode;
  16. @property(nonatomic,strong)UILabel *lblOnlyCode;
  17. @property(nonatomic,strong)UILabel *lblColorNumber;
  18. @property(nonatomic,strong)UILabel *lblSpecification;
  19. @property(nonatomic,strong)UILabel *lblGrade;
  20. @property(nonatomic,strong)UILabel *lblWarehouseArea;
  21. @property(nonatomic,strong)UIView *topSeparator;
  22. @property(nonatomic,strong)UIView *middleSeparator;
  23. @property(nonatomic,strong)UILabel *lblPermitSalesQuantity;
  24. @property(nonatomic,strong)UILabel *lblEndStocking;
  25. @property(nonatomic,strong)UIView *bottomSeparator;
  26. @property(assign) NSInteger position;
  27. @property(nonatomic,strong) InventoryListModel *inventoryModel;
  28. @property(weak) id<OrderListDelegate> delegate;
  29. - (void) setCheckBackground: (BOOL) checked;
  30. - (void)setInventoryGoods:(InventoryListModel *)inventoryGoodsModel;
  31. @end