@@ -405,8 +405,7 @@ public class WxCpXmlMessage implements Serializable {
405
405
406
406
407
407
@ XStreamAlias ("ApprovalInfo" )
408
- private ApprovalInfo approvalInfo =new ApprovalInfo ();
409
-
408
+ private ApprovalInfo approvalInfo = new ApprovalInfo ();
410
409
411
410
412
411
protected static WxCpXmlMessage fromXml (String xml ) {
@@ -466,7 +465,8 @@ public static class ScanCodeInfo {
466
465
}
467
466
468
467
@ Data
469
- public static class ExtAttr {
468
+ public static class ExtAttr implements Serializable {
469
+ private static final long serialVersionUID = -3418685294606228837L ;
470
470
471
471
@ XStreamImplicit (itemFieldName = "Item" )
472
472
protected final List <Item > items = new ArrayList <>();
@@ -486,7 +486,9 @@ public static class Item {
486
486
487
487
@ Data
488
488
@ XStreamAlias ("SendPicsInfo" )
489
- public static class SendPicsInfo {
489
+ public static class SendPicsInfo implements Serializable {
490
+ private static final long serialVersionUID = -6549728838848064881L ;
491
+
490
492
@ XStreamAlias ("PicList" )
491
493
protected final List <Item > picList = new ArrayList <>();
492
494
@@ -504,7 +506,8 @@ public static class Item {
504
506
505
507
@ Data
506
508
@ XStreamAlias ("SendLocationInfo" )
507
- public static class SendLocationInfo {
509
+ public static class SendLocationInfo implements Serializable {
510
+ private static final long serialVersionUID = 6319921071637597406L ;
508
511
509
512
@ XStreamAlias ("Location_X" )
510
513
@ XStreamConverter (value = XStreamCDataConverter .class )
@@ -530,7 +533,8 @@ public static class SendLocationInfo {
530
533
531
534
@ XStreamAlias ("ApprovalInfo" )
532
535
@ Data
533
- public static class ApprovalInfo {
536
+ public static class ApprovalInfo implements Serializable {
537
+ private static final long serialVersionUID = 8136329462880646091L ;
534
538
535
539
/**
536
540
* 审批编号
@@ -551,7 +555,7 @@ public static class ApprovalInfo {
551
555
/**
552
556
* 审批模板id。
553
557
*/
554
- @ XStreamAlias ("templateId " )
558
+ @ XStreamAlias ("TemplateId " )
555
559
private String templateId ;
556
560
/**
557
561
* 审批申请提交时间,Unix时间戳
@@ -563,18 +567,20 @@ public static class ApprovalInfo {
563
567
* 申请人信息
564
568
*/
565
569
@ XStreamAlias ("Applyer" )
566
- private Applyer applyer ;
570
+ private Applier applier ;
567
571
/**
568
572
* 审批申请单变化类型
569
573
*/
570
574
@ XStreamAlias ("StatuChangeEvent" )
571
- private Integer statuChangeEvent ;
575
+ private Integer statusChangeEvent ;
572
576
573
577
@ XStreamAlias ("Applyer" )
574
578
@ Data
575
- public static class Applyer {
579
+ public static class Applier implements Serializable {
580
+ private static final long serialVersionUID = -979255011922209018L ;
581
+
576
582
@ XStreamAlias ("Applyer" )
577
- private String UserId ;
583
+ private String userId ;
578
584
@ XStreamAlias ("Party" )
579
585
private String party ;
580
586
}
0 commit comments