SalesOutStorageGoodsListCell.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // SalesOutStorageGoodsListCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/4/17.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SalesOutStorageSalesSlipGoodsListModel.h"
  10. @interface SalesOutStorageGoodsListCell : UITableViewCell
  11. @property(nonatomic,strong) UILabel *lblSalesNo;
  12. @property(nonatomic,strong) UIView *topSeparator;
  13. @property(nonatomic,strong) UIButton *btnCheck;
  14. @property(nonatomic,strong) UILabel *lblGoodsName;
  15. @property(nonatomic,strong) UIView *middleSeparator1;
  16. @property(nonatomic,strong) UIView *middleSeparator2;
  17. @property(nonatomic,strong) UILabel *lblGoodsCode;
  18. @property(nonatomic,strong) UILabel *lblOnlyCode;
  19. @property(nonatomic,strong) UILabel *lblSalesPrice;
  20. @property(nonatomic,strong) UILabel *lblSalesQuantity;
  21. @property(nonatomic,strong) UILabel *lblSpecification;
  22. @property(nonatomic,strong) UILabel *lblColorNumber;
  23. @property(nonatomic,strong) UILabel *lblBrand;
  24. @property(nonatomic,strong) UIButton *btnMoreInfo;
  25. @property(nonatomic,strong) UIView *bottomSeparator;
  26. @property(nonatomic,weak) id<SalesOutStorageDelegate> checkDelegate;
  27. @property(nonatomic,assign) NSInteger cellIndex;
  28. @property(nonatomic,strong) SalesOutStorageSalesSlipGoodsListModel *goodsListModel;
  29. - (void)setSalesOutStorageGoodsListModel:(SalesOutStorageSalesSlipGoodsListModel *)salesOutStorageGoodsListModel;
  30. - (void) setCheckBackground: (BOOL) checked;
  31. @end