public Map<String, String> getTextParams() {
   AlipayHashMap txtParams = new AlipayHashMap();
   txtParams.put("ali_trust_user_info", this.aliTrustUserInfo);
   if (udfParams != null) {
     txtParams.putAll(this.udfParams);
   }
   return txtParams;
 }
 public Map<String, String> getTextParams() {
   AlipayHashMap txtParams = new AlipayHashMap();
   txtParams.put("biz_content", this.bizContent);
   if (udfParams != null) {
     txtParams.putAll(this.udfParams);
   }
   return txtParams;
 }
 public Map<String, String> getTextParams() {
   AlipayHashMap txtParams = new AlipayHashMap();
   txtParams.put("ali_trust_user_info", aliTrustUserInfo);
   txtParams.put("encryp_code", encrypCode);
   if (udfParams != null) {
     txtParams.putAll(udfParams);
   }
   return txtParams;
 }
 public Map<String, String> getTextParams() {
   AlipayHashMap txtParams = new AlipayHashMap();
   txtParams.put("drawndn_no", this.drawndnNo);
   txtParams.put("entity_code", this.entityCode);
   txtParams.put("entity_name", this.entityName);
   txtParams.put("isv_code", this.isvCode);
   txtParams.put("org_code", this.orgCode);
   if (udfParams != null) {
     txtParams.putAll(this.udfParams);
   }
   return txtParams;
 }
 public Map<String, String> getTextParams() {
   AlipayHashMap txtParams = new AlipayHashMap();
   txtParams.put("channel_id", this.channelId);
   txtParams.put("serial_number", this.serialNumber);
   txtParams.put("status", this.status);
   txtParams.put("tpl_params", this.tplParams);
   txtParams.put("verify_code", this.verifyCode);
   txtParams.put("verify_type", this.verifyType);
   if (udfParams != null) {
     txtParams.putAll(this.udfParams);
   }
   return txtParams;
 }
 public void putOtherTextParam(String key, String value) {
   if (udfParams == null) {
     udfParams = new AlipayHashMap();
   }
   udfParams.put(key, value);
 }