StockTableViewCell.h 524 B

12345678910111213141516171819202122
  1. //
  2. // StockTableViewCell.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 6/21/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface StockTableViewCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *labelModel;
  12. @property (weak, nonatomic) IBOutlet UIButton *btnMove;
  13. @property (weak, nonatomic) IBOutlet UILabel *labelQTY;
  14. @property (weak, nonatomic) IBOutlet UILabel *labelETD;
  15. @end
  16. NS_ASSUME_NONNULL_END