mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-11-02 04:29:48 +08:00
add tostring
This commit is contained in:
@ -489,6 +489,45 @@ public class WxCpXmlMessage {
|
|||||||
this.sendLocationInfo = sendLocationInfo;
|
this.sendLocationInfo = sendLocationInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "WxCpXmlMessage{" +
|
||||||
|
"agentId=" + agentId +
|
||||||
|
", toUserName='" + toUserName + '\'' +
|
||||||
|
", fromUserName='" + fromUserName + '\'' +
|
||||||
|
", createTime=" + createTime +
|
||||||
|
", msgType='" + msgType + '\'' +
|
||||||
|
", content='" + content + '\'' +
|
||||||
|
", msgId=" + msgId +
|
||||||
|
", picUrl='" + picUrl + '\'' +
|
||||||
|
", mediaId='" + mediaId + '\'' +
|
||||||
|
", format='" + format + '\'' +
|
||||||
|
", thumbMediaId='" + thumbMediaId + '\'' +
|
||||||
|
", locationX=" + locationX +
|
||||||
|
", locationY=" + locationY +
|
||||||
|
", scale=" + scale +
|
||||||
|
", label='" + label + '\'' +
|
||||||
|
", title='" + title + '\'' +
|
||||||
|
", description='" + description + '\'' +
|
||||||
|
", url='" + url + '\'' +
|
||||||
|
", event='" + event + '\'' +
|
||||||
|
", eventKey='" + eventKey + '\'' +
|
||||||
|
", ticket='" + ticket + '\'' +
|
||||||
|
", latitude=" + latitude +
|
||||||
|
", longitude=" + longitude +
|
||||||
|
", precision=" + precision +
|
||||||
|
", recognition='" + recognition + '\'' +
|
||||||
|
", status='" + status + '\'' +
|
||||||
|
", totalCount=" + totalCount +
|
||||||
|
", filterCount=" + filterCount +
|
||||||
|
", sentCount=" + sentCount +
|
||||||
|
", errorCount=" + errorCount +
|
||||||
|
", scanCodeInfo=" + scanCodeInfo +
|
||||||
|
", sendPicsInfo=" + sendPicsInfo +
|
||||||
|
", sendLocationInfo=" + sendLocationInfo +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
|
||||||
@XStreamAlias("ScanCodeInfo")
|
@XStreamAlias("ScanCodeInfo")
|
||||||
public static class ScanCodeInfo {
|
public static class ScanCodeInfo {
|
||||||
|
|
||||||
|
|||||||
@ -619,4 +619,41 @@ public class WxMpXmlMessage {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "WxMpXmlMessage{" +
|
||||||
|
"toUserName='" + toUserName + '\'' +
|
||||||
|
", fromUserName='" + fromUserName + '\'' +
|
||||||
|
", createTime=" + createTime +
|
||||||
|
", msgType='" + msgType + '\'' +
|
||||||
|
", content='" + content + '\'' +
|
||||||
|
", msgId=" + msgId +
|
||||||
|
", picUrl='" + picUrl + '\'' +
|
||||||
|
", mediaId='" + mediaId + '\'' +
|
||||||
|
", format='" + format + '\'' +
|
||||||
|
", thumbMediaId='" + thumbMediaId + '\'' +
|
||||||
|
", locationX=" + locationX +
|
||||||
|
", locationY=" + locationY +
|
||||||
|
", scale=" + scale +
|
||||||
|
", label='" + label + '\'' +
|
||||||
|
", title='" + title + '\'' +
|
||||||
|
", description='" + description + '\'' +
|
||||||
|
", url='" + url + '\'' +
|
||||||
|
", event='" + event + '\'' +
|
||||||
|
", eventKey='" + eventKey + '\'' +
|
||||||
|
", ticket='" + ticket + '\'' +
|
||||||
|
", latitude=" + latitude +
|
||||||
|
", longitude=" + longitude +
|
||||||
|
", precision=" + precision +
|
||||||
|
", recognition='" + recognition + '\'' +
|
||||||
|
", status='" + status + '\'' +
|
||||||
|
", totalCount=" + totalCount +
|
||||||
|
", filterCount=" + filterCount +
|
||||||
|
", sentCount=" + sentCount +
|
||||||
|
", errorCount=" + errorCount +
|
||||||
|
", scanCodeInfo=" + scanCodeInfo +
|
||||||
|
", sendPicsInfo=" + sendPicsInfo +
|
||||||
|
", sendLocationInfo=" + sendLocationInfo +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user