CustomerReceiptDetailCell.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. // CustomerReceiptDetailCell
  2. // IOBSS 2.0
  3. //
  4. // Created by 刘瀚璘 on 2017.7.18
  5. // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
  6. //
  7. // 系统名称:
  8. // 功能描述:定制品详细Cell
  9. #import <UIKit/UIKit.h>
  10. #import "ReceiptDetailModel.h"
  11. @interface CustomerReceiptDetailCell : UITableViewCell
  12. /**
  13. 圆角布局
  14. */
  15. @property (weak,nonatomic) IBOutlet UIView *content;
  16. /**
  17. 商品编码
  18. */
  19. @property (weak,nonatomic) IBOutlet UILabel *lblCommodityCode;
  20. /**
  21. 唯一编码
  22. */
  23. @property (weak,nonatomic) IBOutlet UILabel *onlyCode;
  24. /**
  25. 商品品牌
  26. */
  27. @property (weak,nonatomic) IBOutlet UILabel *lblBrandName;
  28. /**
  29. 商品种类
  30. */
  31. @property (weak,nonatomic) IBOutlet UILabel *lblKindName;
  32. /**
  33. 商品品种
  34. */
  35. @property (weak,nonatomic) IBOutlet UILabel *lblVarietyName;
  36. /**
  37. 系列
  38. */
  39. @property (weak,nonatomic) IBOutlet UILabel *lblSeriesName;
  40. /**
  41. 单位
  42. */
  43. @property (weak,nonatomic) IBOutlet UILabel *lblUnitName;
  44. /**
  45. 包装
  46. */
  47. @property (weak,nonatomic) IBOutlet UILabel *lblPackage;
  48. /**
  49. 重量
  50. */
  51. @property (weak,nonatomic) IBOutlet UILabel *lblWeight;
  52. /**
  53. 面积
  54. */
  55. @property (weak,nonatomic) IBOutlet UILabel *lblAcreage;
  56. /**
  57. 名称
  58. */
  59. @property (weak,nonatomic) IBOutlet UILabel *lblGoodsName;
  60. /**
  61. 属性
  62. */
  63. @property (weak,nonatomic) IBOutlet UILabel *lblExpandAttribute;
  64. /**
  65. 属性2
  66. */
  67. @property (weak,nonatomic) IBOutlet UILabel *lblExpandAttribute2;
  68. /**
  69. 规格
  70. */
  71. @property (weak,nonatomic) IBOutlet UILabel *lblSpecification;
  72. /**
  73. 备注
  74. */
  75. @property (weak,nonatomic) IBOutlet UILabel *lblRemark;
  76. /**
  77. 相机
  78. */
  79. @property (strong,nonatomic) ReceiptDetailModel *model;
  80. /**
  81. 高度
  82. */
  83. @property (nonatomic,assign) CGFloat cellHeight;
  84. /**
  85. 刷新页面
  86. */
  87. - (void) loadCell;
  88. @end