| 12345678910111213141516171819202122232425 |
- //
- // InventorySearchCell.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/23.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- @interface InventorySearchCell : SideSlipBaseTableViewCell
- @property (strong, nonatomic) IBOutlet UIButton *btnWare;
- @property (strong, nonatomic) IBOutlet UIButton *btnBrand;
- @property (strong, nonatomic) IBOutlet UILabel *lblFilterQuantityEqZero;
- @property (strong, nonatomic) IBOutlet UITextField *txtCode;
- @property (strong, nonatomic) IBOutlet UITextField *txtOnlyCode;
- @property (strong, nonatomic) IBOutlet UITextField *txtGoodName;
- @property (copy, nonatomic) NSString *ware; // code
- @property (copy, nonatomic) NSString *wareid; // 仓库id 211110
- @property (copy, nonatomic) NSString *brand;
- @property (assign, nonatomic) BOOL isfilterQuantityEqZero;
- @property (strong, nonatomic) IBOutlet UIButton *btnVariety;
- @property(nonatomic,strong) NSString *varietyId;
- @end
|