// // UseStorageVC.h // IBOSSmini // // Created by ssl on 2018/3/1. // Copyright © 2018年 elongtian. All rights reserved. // #import "BaseViewController.h" #import "OrderListDelegate.h" #import "UseStorageModel.h" #import "UseStorageCell.h" @protocol UseStorageDelegate -(void)callbackUseStorageAmount:(NSMutableArray *) arry; @end @interface UseStorageVC :BaseViewController @property (nonatomic,strong) UITableView *vTableView; @property(nonatomic,weak) id useEarnestAmountDelegate; @property (nonatomic,strong) NSMutableArray *earnestList; /** 拷贝的数组 */ @property (nonatomic,strong) NSMutableArray *arr; @property (nonatomic,assign) double goodsAmount; @property(nonatomic,strong) NSString *organizationID; @property(nonatomic,strong) NSString *customerID; @property (nonatomic,strong) ASIDownManager *downManager; @end