| 12345678910111213141516171819202122232425262728293031 |
- //
- // StockingSearchModel.h
- // IBOSS
- //
- // Created by apple on 2017/5/27.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:盘点查询模型
- //
- #import <Foundation/Foundation.h>
- #define STOCKING_SEARCH_RANGE_MODEL @"STOCKING_SEARCH_RANGE_MODEL"
- @interface StockingSearchModel : NSObject
- /**
- 单号
- */
- @property (copy, nonatomic) NSString *stockingNo;
- /**
- 唯一编码
- */
- @property (copy, nonatomic) NSString *onlyCode;
- /**
- 库区
- */
- @property (copy, nonatomic) NSString *warehouse;
- @end
|