Authored by DengXinFei

添加tostring方法

@@ -95,4 +95,20 @@ public class CommonJumpReqVO { @@ -95,4 +95,20 @@ public class CommonJumpReqVO {
95 public void setUnion_type(String union_type) { 95 public void setUnion_type(String union_type) {
96 this.union_type = union_type; 96 this.union_type = union_type;
97 } 97 }
  98 +
  99 +
  100 + @Override
  101 + public String toString() {
  102 + return "CommonJumpReqVO{" +
  103 + "client_id='" + client_id + '\'' +
  104 + ", union_type='" + union_type + '\'' +
  105 + ", channel_code='" + channel_code + '\'' +
  106 + ", go_url='" + go_url + '\'' +
  107 + ", utm_source='" + utm_source + '\'' +
  108 + ", utm_medium='" + utm_medium + '\'' +
  109 + ", utm_campaign='" + utm_campaign + '\'' +
  110 + ", u_id='" + u_id + '\'' +
  111 + ", union_data='" + union_data + '\'' +
  112 + '}';
  113 + }
98 } 114 }