| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //
- // InventorySearchModel.h
- // IBOSS
- //
- // Created by apple on 2017/5/23.
- // Copyright © 2017年 沈阳东科云信软件有限公司. 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 (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;
- @end
|