OtherInStorageGoodsSearchCell.h 1.2 KB

1234567891011121314151617181920212223242526272829
  1. //
  2. // OtherInStorageGoodsSearchCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/4/25.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "OtherInStorageGoodsSearchListModel.h"
  10. @interface OtherInStorageGoodsSearchCell : UITableViewCell
  11. @property(nonatomic,strong) UIButton *btnCheck;
  12. @property(nonatomic,strong) UILabel *lblGoodsName;
  13. @property(nonatomic,strong) UIView *topSeparator;
  14. @property(nonatomic,strong) UILabel *lblGoodsCode;
  15. @property(nonatomic,strong) UILabel *lblOnlyCode;
  16. @property(nonatomic,strong) UILabel *lblBrand;
  17. @property(nonatomic,strong) UILabel *lblKind;
  18. @property(nonatomic,strong) UILabel *lblVariety;
  19. @property(nonatomic,strong) UILabel *lblSeries;
  20. @property(nonatomic,strong) UILabel *lblSpecification;
  21. @property(nonatomic,strong) UIView *bottomSeparator;
  22. @property(nonatomic,assign) NSInteger index;
  23. @property(nonatomic,weak) id<SalesInStorageDelegate> inStorageDelegate;
  24. @property(nonatomic,strong) OtherInStorageGoodsSearchListModel *otherGoodsSearchListModel;
  25. - (void) setCheckBackground: (BOOL) checked;
  26. -(void) setOtherInStorageGoodsSearchModel:(OtherInStorageGoodsSearchListModel*)goodsSearchListModel;
  27. @end