| 1234567891011121314151617181920212223242526272829 |
- //
- // ScanDiscountViewController.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 6/16/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ScanDiscountViewController : UIViewController
- @property double price;
- @property double discount;
- @property (strong,nonatomic) NSString* cart_id;
- @property (weak, nonatomic) IBOutlet UIButton *btn3;
- @property (weak, nonatomic) IBOutlet UIButton *btnnone;
- @property (weak, nonatomic) IBOutlet UIButton *btn5;
- @property (weak, nonatomic) IBOutlet UIButton *btn8;
- @property (weak, nonatomic) IBOutlet UIButton *btn10;
- @property (nonatomic , copy) void (^onSetValue)(double price,double discount);
- @end
- NS_ASSUME_NONNULL_END
|