InventorySearchModel.h 1002 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // InventorySearchModel.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/23.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define INVENTORY_SEARCH_RANGE_MODEL @"INVENTORY_SEARCH_RANGE_MODEL"
  10. @interface InventorySearchModel : NSObject
  11. @property(copy, nonatomic) NSString *goodsCode;
  12. @property(copy, nonatomic) NSString *goodsName;
  13. @property(copy, nonatomic) NSString *onlyCode;
  14. @property(copy, nonatomic) NSString *warehouseId;
  15. @property(copy, nonatomic) NSString *brandId;
  16. @property(copy, nonatomic) NSString *varietyId;
  17. @property(nonatomic,assign) Boolean isfilterQuantityEqZero;
  18. @property(nonatomic,strong) NSString *ceaseFlag;
  19. @property(nonatomic,strong) NSString *positionNumberName;
  20. @property(nonatomic,strong) NSString *goodsSpecification;
  21. @property(nonatomic,strong) NSString *minimumCanSalesQuantity;
  22. @property(nonatomic,strong) NSString *maximumCanSalesQuantity;
  23. @property(copy, nonatomic) NSString *whId; // 仓库id 20211110
  24. @end