| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // 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//<UITextFieldDelegate>
- @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;
- @property (weak, nonatomic) IBOutlet UILabel *labelPriceNet;
- @property (weak, nonatomic) IBOutlet UILabel *labelPriceSpecial;
- @property (weak, nonatomic) IBOutlet UIStepper *steper;
- //@property int pre_val;
- @end
- NS_ASSUME_NONNULL_END
|