UseEarnestAmountVC.h 938 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // UseEarnestAmountVC.h
  3. // IBOSSmini
  4. //
  5. // Created by ssl on 2018/2/28.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "OrderListDelegate.h"
  10. #import "UseEarnestAmountModel.h"
  11. #import "UseEarnestAmountCell.h"
  12. @protocol UseEarnestAmountDelegate <NSObject>
  13. -(void)callbackUseEarnestAmount:(NSMutableArray *) arry;
  14. @end
  15. @interface UseEarnestAmountVC :BaseViewController<UITableViewDataSource,UITableViewDelegate>
  16. @property (nonatomic,strong) UITableView *vTableView;
  17. @property(nonatomic,weak) id<UseEarnestAmountDelegate> useEarnestAmountDelegate;
  18. @property (nonatomic,strong) NSMutableArray *earnestList;
  19. /**
  20. 拷贝的数组
  21. */
  22. @property (nonatomic,strong) NSMutableArray *arr;
  23. @property (nonatomic,assign) double goodsAmount;
  24. @property(nonatomic,assign) int editFLag;
  25. @property(nonatomic,strong) NSString *orderId;
  26. @property (nonatomic,strong) ASIDownManager *downManager;
  27. @end