JXInputMoneyVC.h 834 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // JXInputMoneyVC.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2019/3/7.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import "admobViewController.h"
  9. typedef NS_ENUM(NSInteger, JXInputMoneyType) {
  10. JXInputMoneyTypeSetMoney, // 设置金额
  11. JXInputMoneyTypeCollection, // 收款
  12. JXInputMoneyTypePayment, // 付款
  13. };
  14. @interface JXInputMoneyVC : admobViewController
  15. @property (nonatomic, assign) JXInputMoneyType type;
  16. @property (nonatomic, strong) NSString *userName;
  17. @property (nonatomic, strong) NSString *userId;
  18. @property (nonatomic, strong) NSString *money;
  19. @property (nonatomic, strong) NSString *desStr;
  20. // 二维码付款用string
  21. @property (nonatomic, strong) NSString *paymentCode;
  22. @property (weak, nonatomic) id delegate;
  23. @property (nonatomic, assign) SEL onInputMoney;
  24. @end