StockingSearchCell.h 582 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // StockingSearchCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/27.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:盘点查询单元格
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "SideSlipBaseTableViewCell.h"
  12. @interface StockingSearchCell : SideSlipBaseTableViewCell
  13. /**
  14. 唯一编码
  15. */
  16. @property (strong,nonatomic) IBOutlet UITextField *txtOnlyCode;
  17. /**
  18. 库区
  19. */
  20. @property (strong,nonatomic) IBOutlet UITextField *txtWare;
  21. /**
  22. 单号
  23. */
  24. @property (strong,nonatomic) IBOutlet UITextField *txtStockingNo;
  25. @end