Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import java.util.Map;

/**
* sxh 修改版本,有些参数类型错误,修正版
* 回调推送的message
* https://work.weixin.qq.com/api/doc#90001/90143/90612
*
Expand Down Expand Up @@ -333,7 +334,7 @@ public class WxCpTpXmlMessage implements Serializable {
@XStreamAlias("NewOrderId")
@XStreamConverter(value = XStreamCDataConverter.class)
private String newOrderId;

@Data
@XStreamAlias("ContactSync")
public static class ContactSync implements Serializable {
Expand Down Expand Up @@ -383,13 +384,13 @@ public static class ApprovalInfo implements Serializable {
private static final long serialVersionUID = 6031833682211475786L;

@XStreamAlias("ThirdNo")
protected Long thirdNo;
protected String thirdNo;

@XStreamAlias("OpenSpName")
protected String openSpName;

@XStreamAlias("OpenTemplateId")
protected Integer openTemplateId;
protected String openTemplateId;

@XStreamAlias("OpenSpStatus")
protected Integer openSpStatus;
Expand All @@ -401,7 +402,7 @@ public static class ApprovalInfo implements Serializable {
protected String applyUserName;

@XStreamAlias("ApplyUserId")
protected Integer applyUserId;
protected String applyUserId;

@XStreamAlias("ApplyUserParty")
protected String applyUserParty;
Expand Down Expand Up @@ -447,7 +448,7 @@ public static class Item implements Serializable {
@XStreamAlias("ItemName")
protected String itemName;
@XStreamAlias("ItemUserId")
protected Integer itemUserId;
protected String itemUserId;
@XStreamAlias("ItemImage")
protected String itemImage;
@XStreamAlias("ItemStatus")
Expand All @@ -467,7 +468,7 @@ public static class NotifyNode implements Serializable {
@XStreamAlias("ItemName")
protected String itemName;
@XStreamAlias("ItemUserId")
protected Integer itemUserId;
protected String itemUserId;
@XStreamAlias("ItemImage")
protected String itemImage;
}
Expand Down