| 12345678910111213141516 |
- //
- // PriceSetting.h
- // iSales-NPD
- //
- // Created by Jack on 2016/10/11.
- // Copyright © 2016年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PriceSettingViewController : UIViewController
- @property (nonatomic,assign) NSInteger priceType;///< 0提货价、1统一卖价、 2计算价
- @property (nonatomic,assign) BOOL showPrice;
- @end
|