123456789101112131415161718192021 |
- //
- // TopUpMoneyVC.h
- // jiaPei
- //
- // Created by apple on 16/8/23.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- //账户的充值和提现功能都在这里做好了 看了ali的结构 可以放在一个页面完成 给出状态 type为1是充值 2为提现
- #import <UIKit/UIKit.h>
- @interface TopUpMoneyVC : UIViewController
- @property (nonatomic, assign) NSInteger type; //type为1是充值 2为提现
- @property (nonatomic, copy) NSString *neededMoney;
- @end
|