| 1234567891011121314151617181920212223242526272829 |
- //
- // CollecteAmountVC.h
- // IBOSSmini
- //
- // Created by ssl on 2018/2/28.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "CollecteAmountCell.h"
- #import "CollecteAmountModel.h"
- @protocol CollecteAmountDelegate <NSObject>
- -(void)callbackCollecteAmount:(NSMutableArray *) arry;
- @end
- @interface CollecteAmountVC : BaseViewController<UITableViewDataSource,UITableViewDelegate>
- @property (nonatomic,strong) UITableView *vTableView;
- @property(nonatomic,weak) id<CollecteAmountDelegate> useEarnestAmountDelegate;
- @property (nonatomic,strong) NSMutableArray *earnestList;
- /**
- 拷贝的数组
- */
- @property (nonatomic,strong) NSMutableArray *arr;
- @property (nonatomic,assign) double goodsAmount;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @end
|