ScanOrderModelListViewController.h 589 B

12345678910111213141516171819202122
  1. //
  2. // ScanOrderModelListViewController.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 3/17/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "ScanResultViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ScanOrderModelListViewController : ScanResultViewController<UITextFieldDelegate>
  11. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  12. @property (strong, nonatomic) NSMutableArray* modellist;
  13. @property (strong, nonatomic) UITextField* lastedit;
  14. @property bool edit_check;
  15. @property int pre_val;
  16. @end
  17. NS_ASSUME_NONNULL_END