| 1234567891011121314151617 |
- //
- // PaymentAmountVC.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/2/1.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "OrderListDelegate.h"
- #import "EarnestModel.h"
- #import "EarnestCell.h"
- @interface EarnestAmountVC : BaseViewController<UITableViewDataSource,UITableViewDelegate,OrderListDelegate>
- @property (nonatomic,strong) UITableView *vTableView;
- @property(nonatomic,weak) id<OrderListDelegate> paymentDelegate;
- @property (nonatomic,strong) NSMutableArray *earnestList;
- @end
|