MemberInfo.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. package com.izouma.nineth.dto.adapay;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. import java.util.List;
  4. public class MemberInfo {
  5. @JSONField(name = "member_id")
  6. private String memberId;
  7. @JSONField(name = "created_time")
  8. private String createdTime;
  9. @JSONField(name = "cert_type")
  10. private String certType;
  11. @JSONField(name = "gender")
  12. private String gender;
  13. @JSONField(name = "identified")
  14. private String identified;
  15. @JSONField(name = "tel_no")
  16. private String telNo;
  17. @JSONField(name = "prod_mode")
  18. private String prodMode;
  19. @JSONField(name = "nickname")
  20. private String nickname;
  21. @JSONField(name = "disabled")
  22. private String disabled;
  23. @JSONField(name = "location")
  24. private String location;
  25. @JSONField(name = "app_id")
  26. private String appId;
  27. @JSONField(name = "settle_accounts")
  28. private List<SettleAccountsItem> settleAccounts;
  29. @JSONField(name = "email")
  30. private String email;
  31. @JSONField(name = "object")
  32. private String object;
  33. @JSONField(name = "status")
  34. private String status;
  35. @JSONField(name = "error_type")
  36. private String errorType;
  37. @JSONField(name = "error_code")
  38. private String errorCode;
  39. @JSONField(name = "error_msg")
  40. private String errorMsg;
  41. public void setMemberId(String memberId) {
  42. this.memberId = memberId;
  43. }
  44. public String getMemberId() {
  45. return memberId;
  46. }
  47. public void setCreatedTime(String createdTime) {
  48. this.createdTime = createdTime;
  49. }
  50. public String getCreatedTime() {
  51. return createdTime;
  52. }
  53. public void setCertType(String certType) {
  54. this.certType = certType;
  55. }
  56. public String getCertType() {
  57. return certType;
  58. }
  59. public void setGender(String gender) {
  60. this.gender = gender;
  61. }
  62. public String getGender() {
  63. return gender;
  64. }
  65. public void setIdentified(String identified) {
  66. this.identified = identified;
  67. }
  68. public String getIdentified() {
  69. return identified;
  70. }
  71. public void setTelNo(String telNo) {
  72. this.telNo = telNo;
  73. }
  74. public String getTelNo() {
  75. return telNo;
  76. }
  77. public void setProdMode(String prodMode) {
  78. this.prodMode = prodMode;
  79. }
  80. public String getProdMode() {
  81. return prodMode;
  82. }
  83. public void setNickname(String nickname) {
  84. this.nickname = nickname;
  85. }
  86. public String getNickname() {
  87. return nickname;
  88. }
  89. public void setDisabled(String disabled) {
  90. this.disabled = disabled;
  91. }
  92. public String getDisabled() {
  93. return disabled;
  94. }
  95. public void setLocation(String location) {
  96. this.location = location;
  97. }
  98. public String getLocation() {
  99. return location;
  100. }
  101. public void setAppId(String appId) {
  102. this.appId = appId;
  103. }
  104. public String getAppId() {
  105. return appId;
  106. }
  107. public void setSettleAccounts(List<SettleAccountsItem> settleAccounts) {
  108. this.settleAccounts = settleAccounts;
  109. }
  110. public List<SettleAccountsItem> getSettleAccounts() {
  111. return settleAccounts;
  112. }
  113. public void setEmail(String email) {
  114. this.email = email;
  115. }
  116. public String getEmail() {
  117. return email;
  118. }
  119. public void setObject(String object) {
  120. this.object = object;
  121. }
  122. public String getObject() {
  123. return object;
  124. }
  125. public void setStatus(String status) {
  126. this.status = status;
  127. }
  128. public String getStatus() {
  129. return status;
  130. }
  131. public String getErrorType() {
  132. return errorType;
  133. }
  134. public void setErrorType(String errorType) {
  135. this.errorType = errorType;
  136. }
  137. public String getErrorCode() {
  138. return errorCode;
  139. }
  140. public void setErrorCode(String errorCode) {
  141. this.errorCode = errorCode;
  142. }
  143. public String getErrorMsg() {
  144. return errorMsg;
  145. }
  146. public void setErrorMsg(String errorMsg) {
  147. this.errorMsg = errorMsg;
  148. }
  149. }