TopUpMoneyVC.h 477 B

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