ScanModelListCell.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // ScanModelListCell.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 <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ScanModelListCell : UITableViewCell//<UITextFieldDelegate>
  11. @property (weak, nonatomic) IBOutlet UILabel *labelModel;
  12. @property (weak, nonatomic) IBOutlet UILabel *labelDescription;
  13. @property (weak, nonatomic) IBOutlet UILabel *labelDimension;
  14. @property (weak, nonatomic) IBOutlet UILabel *labelCuft;
  15. @property (weak, nonatomic) IBOutlet UILabel *labelOrigin;
  16. @property (weak, nonatomic) IBOutlet UILabel *labelPort;
  17. @property (weak, nonatomic) IBOutlet UILabel *labelPriceCTNR;
  18. @property (weak, nonatomic) IBOutlet UILabel *labelPriceNCA;
  19. @property (weak, nonatomic) IBOutlet UILabel *labelPrice25p;
  20. @property (weak, nonatomic) IBOutlet UILabel *labelAvailable;
  21. @property (weak, nonatomic) IBOutlet UITextField *editQTY;
  22. @property (strong, nonatomic) NSMutableDictionary *modelJson;
  23. @property (weak, nonatomic) IBOutlet UILabel *labelPriceDisplay1;
  24. @property (weak, nonatomic) IBOutlet UILabel *labelPriceDisplay2;
  25. @property (weak, nonatomic) IBOutlet UILabel *labelPriceSpecial;
  26. @property (weak, nonatomic) IBOutlet UIStepper *steper;
  27. @property (weak, nonatomic) IBOutlet UILabel *labelStock;
  28. //@property int pre_val;
  29. @property (weak, nonatomic) IBOutlet UILabel *labelPrice0;
  30. @property (weak, nonatomic) IBOutlet UILabel *labelPrice1;
  31. @property (weak, nonatomic) IBOutlet UILabel *labelPrice2;
  32. @property (weak, nonatomic) IBOutlet UILabel *labelPrice3;
  33. @property (weak, nonatomic) IBOutlet UILabel *labelPrice4;
  34. @end
  35. NS_ASSUME_NONNULL_END