InventoryDetailModel.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. //
  2. // InventoryDetailModel.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2018/12/11.
  6. // Copyright © 2018 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface InventoryDetailModel : NSObject
  10. /**
  11. code
  12. */
  13. @property (nonatomic, strong) NSString *code;
  14. /**
  15. onlyCode
  16. */
  17. @property (nonatomic, strong) NSString *onlyCode;
  18. /**
  19. 库房
  20. */
  21. @property (nonatomic, strong) NSString *wareHouseName;
  22. /**
  23. 规格
  24. */
  25. @property (nonatomic, strong) NSString *specification;
  26. /**
  27. 名称
  28. */
  29. @property (nonatomic, strong) NSString *goodName;
  30. /**
  31. 品牌
  32. */
  33. @property (nonatomic, strong) NSString *brandName;
  34. /**
  35. 等级
  36. */
  37. @property (nonatomic, strong) NSString *gradeName;
  38. /**
  39. 色号
  40. */
  41. @property (nonatomic, strong) NSString *colorNumber;
  42. /**
  43. 结存量
  44. */
  45. @property (nonatomic, strong) NSString *inventoryQuantity;
  46. /**
  47. 可售量
  48. */
  49. @property (nonatomic, strong) NSString *canSaleQuantity;
  50. /**
  51. 仓位
  52. */
  53. @property (nonatomic, strong) NSString *positionNumber;
  54. /**
  55. 标价
  56. */
  57. @property (nonatomic, strong) NSString *price;
  58. /**
  59. 流通方式
  60. */
  61. @property (nonatomic, strong) NSString *circulateType;
  62. /**
  63. */
  64. @property (nonatomic, strong) NSString *package;
  65. /**
  66. 标示
  67. */
  68. @property (nonatomic, assign) BOOL boxPieceFlag;
  69. @property (nonatomic, strong) NSString *box;
  70. @property (nonatomic, strong) NSString *piece;
  71. @property (nonatomic, strong) NSString *decimalPlaces;
  72. @property (nonatomic, strong) NSString *seriesName;
  73. @property (nonatomic, strong) NSString *varietyName;
  74. @property (nonatomic, strong) NSString *photo;
  75. @end