StockingModel.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. //
  2. // StockingModel.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/17.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:盘点模型
  9. //
  10. #import <Foundation/Foundation.h>
  11. @interface StockingModel : NSObject
  12. /**
  13. id
  14. */
  15. @property (nonatomic,strong) NSString *stockingID;
  16. /**
  17. 库存id
  18. */
  19. @property (nonatomic,strong) NSString *inventoryID;
  20. /**
  21. id
  22. */
  23. @property (nonatomic,strong) NSString *stockingNo;
  24. /**
  25. code
  26. */
  27. @property (nonatomic, strong) NSString *code;
  28. /**
  29. code
  30. */
  31. @property (nonatomic, strong) NSString *codeID;
  32. /**
  33. onlyCode
  34. */
  35. @property (nonatomic, strong) NSString *onlyCode;
  36. /**
  37. 库房
  38. */
  39. @property (nonatomic, strong) NSString *warehouseName;
  40. /**
  41. 规格
  42. */
  43. @property (nonatomic, strong) NSString *specification;
  44. /**
  45. 盘点人
  46. */
  47. @property (nonatomic, strong) NSString *createUser;
  48. /**
  49. 等级
  50. */
  51. @property (nonatomic, strong) NSString *gradeName;
  52. /**
  53. 色号
  54. */
  55. @property (nonatomic, strong) NSString *colorNumber;
  56. /**
  57. 仓位
  58. */
  59. @property (nonatomic, strong) NSString *positionNumber;
  60. /**
  61. 盘点时间
  62. */
  63. @property (nonatomic, strong) NSString *createTime;
  64. /**
  65. 库存数量
  66. */
  67. @property (nonatomic, strong) NSString *quantity;
  68. /**
  69. 可售量数量
  70. */
  71. @property (nonatomic, strong) NSString *balanceQuantity;
  72. @end