Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

:fix: #3037 企业微信 第三方审批不同回调下实体缺少字段问题 #3047

Merged
merged 1 commit into from
Jun 16, 2023
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 @@ -479,7 +479,7 @@ public class WxCpTpXmlMessage implements Serializable {
private WxCpXmlMessage.SendLocationInfo sendLocationInfo = new WxCpXmlMessage.SendLocationInfo();

@XStreamAlias("ApprovalInfo")
private ApprovalInfo approvalInfo = new ApprovalInfo();
private WxCpXmlApprovalInfo approvalInfo = new WxCpXmlApprovalInfo();

@XStreamAlias("TaskId")
@XStreamConverter(value = XStreamCDataConverter.class)
Expand Down Expand Up @@ -580,6 +580,7 @@ public static class BatchJob implements Serializable {

/**
* The type Approval info.
* @deprecated 无法同时适配不同回调下的实体字段,使用WxCpXmlApprovalInfo可完美适配
*/
@Data
@XStreamAlias("ApprovalInfo")
Expand Down