RepairReceiptDetailCell.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. //
  2. // RepairReceiptDetailCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/19.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. //功能描述: 维修回执明细单元格类
  9. #import <UIKit/UIKit.h>
  10. #import "RepairReceiptDetailModel.h"
  11. @interface RepairReceiptDetailCell : UITableViewCell
  12. /**
  13. 销售单号
  14. */
  15. @property (strong,nonatomic) IBOutlet UILabel *saleNo;
  16. /**
  17. 维修数量
  18. */
  19. @property (strong,nonatomic) IBOutlet UILabel *repairQuantity;
  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 *completedQuantity;
  32. /**
  33. 规格
  34. */
  35. @property (strong,nonatomic) IBOutlet UILabel *specification;
  36. /**
  37. 色号
  38. */
  39. @property (strong,nonatomic) IBOutlet UILabel *colorName;
  40. /**
  41. 保修日期
  42. */
  43. @property (strong,nonatomic) IBOutlet UILabel *warrantyDate;
  44. /**
  45. 备注
  46. */
  47. @property (strong,nonatomic) IBOutlet UILabel *remark;
  48. /**
  49. 商品名称
  50. */
  51. @property (strong,nonatomic) IBOutlet UILabel *goodsName;
  52. /**
  53. 回执类型
  54. */
  55. @property (strong,nonatomic) IBOutlet UILabel *receiptType;
  56. /**
  57. 编码
  58. */
  59. @property (strong,nonatomic) IBOutlet UILabel *code;
  60. /**
  61. 唯一编码
  62. */
  63. @property (strong,nonatomic) IBOutlet UILabel *onlyCode;
  64. /**
  65. 商品类型
  66. */
  67. @property (strong,nonatomic) IBOutlet UILabel *varietyName;
  68. /**
  69. 品牌
  70. */
  71. @property (strong,nonatomic) IBOutlet UILabel *brandName;
  72. /**
  73. 系列
  74. */
  75. @property (strong,nonatomic) IBOutlet UILabel *seriesName;
  76. /**
  77. 单位
  78. */
  79. @property (strong,nonatomic) IBOutlet UILabel *unitName;
  80. /**
  81. */
  82. @property (strong,nonatomic) IBOutlet UILabel *package;
  83. /**
  84. 重量
  85. */
  86. @property (strong,nonatomic) IBOutlet UILabel *weight;
  87. /**
  88. 面积
  89. */
  90. @property (strong,nonatomic) IBOutlet UILabel *acreage;
  91. /**
  92. */
  93. @property (strong,nonatomic) IBOutlet UILabel *box;
  94. /**
  95. */
  96. @property (strong,nonatomic) IBOutlet UILabel *piece;
  97. /**
  98. 平米数
  99. */
  100. @property (strong,nonatomic) IBOutlet UILabel *mm;
  101. /**
  102. 其它联系方式
  103. */
  104. @property (strong,nonatomic) IBOutlet UILabel *otherContact;
  105. /**
  106. 扩展属性
  107. */
  108. @property (strong,nonatomic) IBOutlet UILabel *expandAttribute;
  109. /**
  110. 扩展属性2
  111. */
  112. @property (strong,nonatomic) IBOutlet UILabel *expandAttributeTwo;
  113. /**
  114. 设置维修明细数据
  115. @param dicInfo <#dicInfo description#>
  116. */
  117. - (void)setRepairReceiptDetailInfo:(RepairReceiptDetailModel *)model;
  118. @end