InventoryCell.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // InventoryCell.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/16.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "InventoryModel.h"
  10. @interface InventoryCell : UITableViewCell
  11. /**
  12. id
  13. */
  14. @property(nonatomic,assign) NSString *inventoryId;
  15. /**
  16. model
  17. */
  18. @property (nonatomic, strong) InventoryModel *model;
  19. /**
  20. code
  21. */
  22. @property (nonatomic, strong) UILabel *code;
  23. /**
  24. onlyCode
  25. */
  26. @property (nonatomic, strong) UILabel *onlyCode;
  27. /**
  28. 商品名称
  29. */
  30. @property (nonatomic, strong) UILabel *goodName;
  31. /**
  32. 库房
  33. */
  34. @property (nonatomic, strong) UILabel *wareHouseName;
  35. /**
  36. 规格
  37. */
  38. @property (nonatomic, strong) UILabel *specification;
  39. /**
  40. 品牌
  41. */
  42. @property (nonatomic, strong) UILabel *brandName;
  43. /**
  44. 等级
  45. */
  46. @property (nonatomic, strong) UILabel *gradeName;
  47. /**
  48. 色号
  49. */
  50. @property (nonatomic, strong) UILabel *colorNumber;
  51. /**
  52. 结存量
  53. */
  54. @property (nonatomic, strong) UILabel *inventoryQuantity;
  55. /**
  56. 可售量
  57. */
  58. @property (nonatomic, strong) UILabel *canSaleQuantity;
  59. /**
  60. 仓位
  61. */
  62. @property (nonatomic, strong) UILabel *positionNumber;
  63. /**
  64. 标价
  65. */
  66. @property (nonatomic, strong) UILabel *price;
  67. @end