ScanHistoryViewController.h 515 B

1234567891011121314151617181920
  1. //
  2. // ScanHistoryViewController.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 3/29/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ActiveViewController.h"
  10. #import "ScanRefreshStock.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface ScanHistoryViewController : ActiveViewController<IScanRefreshStock>
  13. @property (weak, nonatomic) IBOutlet UITableView *tableview;
  14. @property (weak, nonatomic) IBOutlet UILabel *labelStock;
  15. @end
  16. NS_ASSUME_NONNULL_END