We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1d55c1 commit d27a922Copy full SHA for d27a922
1 file changed
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/applydata/ContentValue.java
@@ -61,6 +61,20 @@ public class ContentValue implements Serializable {
61
@SerializedName("bank_account")
62
private BankAccount bankAccount;
63
64
+ @SerializedName("phonenumber")
65
+ private PhoneNumber phonenumber;
66
+
67
+ /**
68
+ * Phone number control value: {@code value.phonenumber = { area, number }}.
69
+ * e.g. area="+62", number="87827717730"
70
+ */
71
+ @Data
72
+ public static class PhoneNumber implements Serializable {
73
+ private static final long serialVersionUID = 1L;
74
+ private String area;
75
+ private String number;
76
+ }
77
78
/**
79
* The type Date.
80
*/
0 commit comments