StockingModel.h 1.2 KB

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