| 12345678910111213141516171819202122232425262728293031 |
- //
- // StockingSearchCell.h
- // IBOSS
- //
- // Created by apple on 2017/5/27.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:盘点查询单元格
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- @interface StockingSearchCell : SideSlipBaseTableViewCell
- /**
- 唯一编码
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtOnlyCode;
- /**
- 库区
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtWare;
- /**
- 单号
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtStockingNo;
- @end
|