OrderDetailTableViewCell.h 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // OrderDetailTableViewCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/25.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ShopCartItemModel.h"
  10. @interface OrderDetailTableViewCell : UITableViewCell
  11. @property(strong) UILabel * lblSalesQuantity;//销售数量
  12. @property(strong) UILabel * lblSalesPrice;//售价
  13. //@property(strong) UILabel * lblRemarks;//备注
  14. @property(strong) UILabel * lblMarkedPrice;//标价
  15. @property(strong) UILabel * lblSpecification;//规格
  16. @property(strong) UILabel * lblAcreage;//面积
  17. @property(strong) UILabel * lblVolume;//体积
  18. @property(strong) UILabel * lblCode;//编码
  19. @property(strong) UILabel * lblOnlyCode;//唯一编码
  20. @property(strong) UILabel * lblColorNumber;//色号
  21. @property(strong) UILabel * lblPositionNumber;//仓位号
  22. @property(strong) UILabel * lblWarehouseName;//库区
  23. @property(strong) UILabel * lblBrandName;//品牌
  24. @property(strong) UILabel * lblKindName;//商品种类
  25. @property(strong) UILabel * lblVarietyName;//商品品种
  26. @property(strong) UILabel* lblSeriesName;//系列
  27. @property(strong) UILabel * lblUnitName;//单位
  28. -(void)parseOrderInfo:(ShopCartItemModel *)orderItem;
  29. @end