InstallReceiptDetailCell.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. //
  2. // InstallReceiptDetailCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/11.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:安装回执明细单元格类
  9. #import <UIKit/UIKit.h>
  10. #import "InstallReceiptDetailModel.h"
  11. @interface InstallReceiptDetailCell : UITableViewCell
  12. /**
  13. 销售单号
  14. */
  15. @property (strong,nonatomic) IBOutlet UILabel *saleNo;
  16. /**
  17. 安装数量
  18. */
  19. @property (strong,nonatomic) IBOutlet UILabel *installQuantity;
  20. /**
  21. 回执备注
  22. */
  23. @property (strong,nonatomic) IBOutlet UILabel *receiptRemark;
  24. /**
  25. 回执数量
  26. */
  27. @property (strong,nonatomic) IBOutlet UILabel *receiptQuantity;
  28. /**
  29. 回执类型
  30. */
  31. @property (strong,nonatomic) IBOutlet UILabel *receiptType;
  32. /**
  33. 产品编码
  34. */
  35. @property (strong,nonatomic) IBOutlet UILabel *code;
  36. /**
  37. 唯一编码
  38. */
  39. @property (strong,nonatomic) IBOutlet UILabel *onlyCode;
  40. /**
  41. 种类
  42. */
  43. @property (strong,nonatomic) IBOutlet UILabel *kindName;
  44. /**
  45. 品牌
  46. */
  47. @property (strong,nonatomic) IBOutlet UILabel *brandName;
  48. /**
  49. 品种
  50. */
  51. @property (strong,nonatomic) IBOutlet UILabel *varietyName;
  52. /**
  53. 系列
  54. */
  55. @property (strong,nonatomic) IBOutlet UILabel *seriesName;
  56. /**
  57. 单位
  58. */
  59. @property (strong,nonatomic) IBOutlet UILabel *unitName;
  60. /**
  61. */
  62. @property (strong,nonatomic) IBOutlet UILabel *package;
  63. /**
  64. 重量
  65. */
  66. @property (strong,nonatomic) IBOutlet UILabel *weight;
  67. /**
  68. 面积
  69. */
  70. @property (strong,nonatomic) IBOutlet UILabel *acreage;
  71. /**
  72. */
  73. @property (strong,nonatomic) IBOutlet UILabel *box;
  74. /**
  75. */
  76. @property (strong,nonatomic) IBOutlet UILabel *piece;
  77. /**
  78. 平米
  79. */
  80. @property (strong,nonatomic) IBOutlet UILabel *mm;
  81. /**
  82. 其他联系人
  83. */
  84. @property (strong,nonatomic) IBOutlet UILabel *otherContact;
  85. /**
  86. 扩展属性
  87. */
  88. @property (strong,nonatomic) IBOutlet UILabel *expandAttribute;
  89. /**
  90. 扩展属性2
  91. */
  92. @property (strong,nonatomic) IBOutlet UILabel *expandAttributeTwo;
  93. /**
  94. 设置cell数据
  95. @param dicInfo <#dicInfo description#>
  96. */
  97. - (void)setInstallReceiptDetailInfo:(InstallReceiptDetailModel *)model;
  98. @end