| 123456789101112131415161718192021222324252627282930313233 |
- //
- // InventoryGoodsSearchCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/2/2.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OrderListDelegate.h"
- #import "InventoryListModel.h"
- #import "NSString+Tools.h"
- @interface InventoryGoodsSearchCell : UITableViewCell
- @property(nonatomic,strong)UIButton *btnCheck;
- @property(nonatomic,strong)UILabel *lblGoodsName;
- @property(nonatomic,strong)UILabel *lblGoodsCode;
- @property(nonatomic,strong)UILabel *lblOnlyCode;
- @property(nonatomic,strong)UILabel *lblColorNumber;
- @property(nonatomic,strong)UILabel *lblSpecification;
- @property(nonatomic,strong)UILabel *lblGrade;
- @property(nonatomic,strong)UILabel *lblWarehouseArea;
- @property(nonatomic,strong)UIView *topSeparator;
- @property(nonatomic,strong)UIView *middleSeparator;
- @property(nonatomic,strong)UILabel *lblPermitSalesQuantity;
- @property(nonatomic,strong)UILabel *lblEndStocking;
- @property(nonatomic,strong)UIView *bottomSeparator;
- @property(assign) NSInteger position;
- @property(nonatomic,strong) InventoryListModel *inventoryModel;
- @property(weak) id<OrderListDelegate> delegate;
- - (void) setCheckBackground: (BOOL) checked;
- - (void)setInventoryGoods:(InventoryListModel *)inventoryGoodsModel;
- @end
|