InventorySearchCell.h 987 B

12345678910111213141516171819202122232425
  1. //
  2. // InventorySearchCell.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/23.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SideSlipBaseTableViewCell.h"
  10. @interface InventorySearchCell : SideSlipBaseTableViewCell
  11. @property (strong, nonatomic) IBOutlet UIButton *btnWare;
  12. @property (strong, nonatomic) IBOutlet UIButton *btnBrand;
  13. @property (strong, nonatomic) IBOutlet UILabel *lblFilterQuantityEqZero;
  14. @property (strong, nonatomic) IBOutlet UITextField *txtCode;
  15. @property (strong, nonatomic) IBOutlet UITextField *txtOnlyCode;
  16. @property (strong, nonatomic) IBOutlet UITextField *txtGoodName;
  17. @property (copy, nonatomic) NSString *ware; // code
  18. @property (copy, nonatomic) NSString *wareid; // 仓库id 211110
  19. @property (copy, nonatomic) NSString *brand;
  20. @property (assign, nonatomic) BOOL isfilterQuantityEqZero;
  21. @property (strong, nonatomic) IBOutlet UIButton *btnVariety;
  22. @property(nonatomic,strong) NSString *varietyId;
  23. @end