SalesSlipGoodsListCell.h 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // SalesSlipGoodsListCell.h
  3. // IBOSSmini
  4. //
  5. // Created by ssl on 2018/1/29.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SalesSlipGoodsListModel.h"
  10. #import "UIColor+hexColor.h"
  11. @interface SalesSlipGoodsListCell : UITableViewCell
  12. @property (nonatomic, strong) UILabel *orderNoLbl;
  13. @property (nonatomic, strong) UIView *topSeparator;
  14. @property (nonatomic, strong) UILabel *goodsNameLbl;
  15. @property (nonatomic, strong) UIView *middleSeparator;
  16. @property (nonatomic, strong) UILabel *goodsCodeLbl;
  17. @property (nonatomic, strong) UILabel *onlyCodeLbl;
  18. @property (nonatomic, strong) UILabel *orderPriceLbl;
  19. @property (nonatomic, strong) UILabel *orderQuantityLbl;
  20. @property (nonatomic, strong) UILabel *specificationLbl;
  21. @property (nonatomic, strong) UILabel *colorNumberLbl;
  22. @property (nonatomic, strong) UILabel *brandNameLbl;
  23. @property (nonatomic, strong) UIView *bottomSeparator;
  24. @property(nonatomic) BOOL isSelect;//购物车选中标识
  25. @property(assign) NSInteger position;
  26. @property(nonatomic,strong)SalesSlipGoodsListModel * salesOrderGoodsListModel;
  27. - (void)setSalesGoodsOrder:(SalesSlipGoodsListModel *)salesOrder orderStatus:(NSUInteger)status;
  28. @end