// // ScanModelListCell.h // HMLG Scan Order // // Created by Rui Zhang on 3/17/22. // Copyright © 2022 United Software Applications, Inc. All rights reserved. // #import 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 *labelStock; // --- 数量编辑区 --- @property (weak, nonatomic) IBOutlet UITextField *editQTY; @property (weak, nonatomic) IBOutlet UIStepper *steper; // --- 动态价格表 ScrollView --- @property (weak, nonatomic) IBOutlet UIScrollView *priceScrollView; // --- 数据模型 --- @property (strong, nonatomic) NSMutableDictionary *modelJson; @end NS_ASSUME_NONNULL_END