| 1234567891011121314151617181920212223 |
- //
- // SetCategoryPriceController.h
- // iSales-NPD
- //
- // Created by Jack on 2016/10/11.
- // Copyright © 2016年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^setCategoryPriceReturnBlock) (NSDictionary *categoryPrice);
- @interface SetCategoryPriceController : UIViewController
- @property (nonatomic,assign) NSInteger categoryID;
- @property (nonatomic,strong) NSMutableDictionary *categoryPrice;
- @property (nonatomic,copy) setCategoryPriceReturnBlock returnBlock;
- @end
|