| 1234567891011121314151617181920212223242526272829 |
- //
- // OtherInStorageGoodsSearchCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/25.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OtherInStorageGoodsSearchListModel.h"
- @interface OtherInStorageGoodsSearchCell : UITableViewCell
- @property(nonatomic,strong) UIButton *btnCheck;
- @property(nonatomic,strong) UILabel *lblGoodsName;
- @property(nonatomic,strong) UIView *topSeparator;
- @property(nonatomic,strong) UILabel *lblGoodsCode;
- @property(nonatomic,strong) UILabel *lblOnlyCode;
- @property(nonatomic,strong) UILabel *lblBrand;
- @property(nonatomic,strong) UILabel *lblKind;
- @property(nonatomic,strong) UILabel *lblVariety;
- @property(nonatomic,strong) UILabel *lblSeries;
- @property(nonatomic,strong) UILabel *lblSpecification;
- @property(nonatomic,strong) UIView *bottomSeparator;
- @property(nonatomic,assign) NSInteger index;
- @property(nonatomic,weak) id<SalesInStorageDelegate> inStorageDelegate;
- @property(nonatomic,strong) OtherInStorageGoodsSearchListModel *otherGoodsSearchListModel;
- - (void) setCheckBackground: (BOOL) checked;
- -(void) setOtherInStorageGoodsSearchModel:(OtherInStorageGoodsSearchListModel*)goodsSearchListModel;
- @end
|