| 123456789101112131415161718192021222324252627282930 |
- //
- // ScanModelListCell.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 3/17/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ScanModelListCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *labelModel;
- @property (weak, nonatomic) IBOutlet UILabel *labelDescription;
- @property (weak, nonatomic) IBOutlet UILabel *labelDimension;
- @property (weak, nonatomic) IBOutlet UILabel *labelCuft;
- @property (weak, nonatomic) IBOutlet UILabel *labelOrigin;
- @property (weak, nonatomic) IBOutlet UILabel *labelPort;
- @property (weak, nonatomic) IBOutlet UILabel *labelPriceCTNR;
- @property (weak, nonatomic) IBOutlet UILabel *labelPriceNCA;
- @property (weak, nonatomic) IBOutlet UILabel *labelPrice25p;
- @property (weak, nonatomic) IBOutlet UILabel *labelAvailable;
- @property (weak, nonatomic) IBOutlet UITextField *editQTY;
- @property (strong, nonatomic) NSMutableDictionary *modelJson;
- @end
- NS_ASSUME_NONNULL_END
|