| 123456789101112131415161718192021222324 |
- //
- // ScanOrderModelListViewController.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 3/17/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import "ScanResultViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ScanOrderModelListViewController : ScanResultViewController<UITextFieldDelegate>
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (strong, nonatomic) NSMutableArray* modellist;
- @property (strong, nonatomic,nullable) UITextField* lastedit;
- @property bool edit_check;
- @property int pre_val;
- @property (weak, nonatomic) IBOutlet UILabel *labelStock;
- @property (weak, nonatomic) IBOutlet UIButton *btnUpdateStoc;
- @end
- NS_ASSUME_NONNULL_END
|