StockingSearchModel.h 560 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // StockingSearchModel.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/27.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:盘点查询模型
  9. //
  10. #import <Foundation/Foundation.h>
  11. #define STOCKING_SEARCH_RANGE_MODEL @"STOCKING_SEARCH_RANGE_MODEL"
  12. @interface StockingSearchModel : NSObject
  13. /**
  14. 单号
  15. */
  16. @property (copy, nonatomic) NSString *stockingNo;
  17. /**
  18. 唯一编码
  19. */
  20. @property (copy, nonatomic) NSString *onlyCode;
  21. /**
  22. 库区
  23. */
  24. @property (copy, nonatomic) NSString *warehouse;
  25. @end