Skip to content

Commit

Permalink
Fix issue Wechat-Group#1888: 补全OA回调信息
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyv12345 committed Nov 26, 2020
1 parent e67b184 commit c33d10a
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -600,15 +600,16 @@ public static class ApprovalInfo implements Serializable {

/**
* 抄送信息,可能有多个抄送节点
* 这回查字典,notifier通知人,Notifyer这不知道是什么
*/
@XStreamImplicit(itemFieldName="Notifyer")
private List<Notifyer> notorieties;
private List<Notifier> notifier;

/**
* 审批申请备注信息,可能有多个备注节点
*/
@XStreamImplicit(itemFieldName="Comments")
private List<Comments> comments;
private List<Comment> comments;

/**
* 审批申请单变化类型
Expand Down Expand Up @@ -662,7 +663,7 @@ public static class SpRecord implements Serializable{
* 审批节点详情。当节点为标签或上级时,一个节点可能有多个分支
*/
@XStreamImplicit(itemFieldName="Details")
private List<Details> details;
private List<Detail> details;

}

Expand All @@ -671,7 +672,7 @@ public static class SpRecord implements Serializable{
*/
@XStreamAlias("Details")
@Data
public static class Details implements Serializable{
public static class Detail implements Serializable{

private static final long serialVersionUID = -8446107461495047603L;

Expand Down Expand Up @@ -727,7 +728,7 @@ public static class Approver implements Serializable{
*/
@Data
@XStreamAlias("Notifyer")
public static class Notifyer implements Serializable{
public static class Notifier implements Serializable{

private static final long serialVersionUID = -4524071522890013920L;

Expand All @@ -743,7 +744,7 @@ public static class Notifyer implements Serializable{
*/
@Data
@XStreamAlias("Comments")
public static class Comments implements Serializable{
public static class Comment implements Serializable{

private static final long serialVersionUID = 6912156206252719485L;

Expand Down

0 comments on commit c33d10a

Please sign in to comment.