| 12345678910111213141516171819202122232425262728293031 |
- //
- // InventorySearchModel.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/23.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #define INVENTORY_SEARCH_RANGE_MODEL @"INVENTORY_SEARCH_RANGE_MODEL"
- @interface InventorySearchModel : NSObject
- @property(copy, nonatomic) NSString *goodsCode;
- @property(copy, nonatomic) NSString *goodsName;
- @property(copy, nonatomic) NSString *onlyCode;
- @property(copy, nonatomic) NSString *warehouseId;
- @property(copy, nonatomic) NSString *brandId;
- @property(copy, nonatomic) NSString *varietyId;
- @property(nonatomic,assign) Boolean isfilterQuantityEqZero;
- @property(nonatomic,strong) NSString *ceaseFlag;
- @property(nonatomic,strong) NSString *positionNumberName;
- @property(nonatomic,strong) NSString *goodsSpecification;
- @property(nonatomic,strong) NSString *minimumCanSalesQuantity;
- @property(nonatomic,strong) NSString *maximumCanSalesQuantity;
- @property(copy, nonatomic) NSString *whId; // 仓库id 20211110
- @end
|