package com.walker.pay.allinpaycloud.pojo; public class RequestRealName { @Override public String toString(){ return new StringBuilder("[bizUserId=").append(this.bizUserId) .append(", name=").append(this.name) .append(", identityNo=").append(this.identityNo) .append("]").toString(); } public String getBizUserId() { return bizUserId; } public void setBizUserId(String bizUserId) { this.bizUserId = bizUserId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public long getIdentityType() { return identityType; } public void setIdentityType(long identityType) { this.identityType = identityType; } public String getIdentityNo() { return identityNo; } public void setIdentityNo(String identityNo) { this.identityNo = identityNo; } private String bizUserId; private String name; private long identityType = 1; // 身份证 private String identityNo; }