DigitalRmbSubjectResult.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.juxin.client.websocket.ppojo;
  2. import lombok.Data;
  3. @Data
  4. public class DigitalRmbSubjectResult {
  5. private String applicationId; // 业务id 对应splitId
  6. private String queryResult; // 查询结果
  7. private String customerName; // 客户名称
  8. private String walletName; // 钱包名称
  9. private String walletType; // 钱包类型
  10. private String walletOpenTime; // 钱包开户时间
  11. private String walletOrgCode; // 钱包运营机构号
  12. private String imei; // IMEI
  13. private String licenseType; // 证照类型
  14. private String walletId; // 钱包ID
  15. private String walletStatus; // 钱包状态
  16. private String walletCloseTime; // 钱包注销时间
  17. private String walletPhone; // 钱包手机号
  18. private String mac; // MAC
  19. private String idNumber; // 证件号
  20. private String parentWalletId; // 母钱包ID
  21. private String frozenAmount; // 钱包实际冻结金额
  22. private String openMethod; // 钱包开立方式
  23. private String ip; // IP
  24. private String boundBankCardJson; // 绑定银行卡json
  25. private String registeredBankCardJson; // 注册银行卡json
  26. }