🎨 #3973 【企业微信】修复OA 审批详情接口中 PhoneNumber 控件值无法被 Gson 反序列化的问题
This commit is contained in:
@@ -61,6 +61,20 @@ public class ContentValue implements Serializable {
|
||||
@SerializedName("bank_account")
|
||||
private BankAccount bankAccount;
|
||||
|
||||
@SerializedName("phonenumber")
|
||||
private PhoneNumber phonenumber;
|
||||
|
||||
/**
|
||||
* Phone number control value: {@code value.phonenumber = { area, number }}.
|
||||
* e.g. area="+62", number="87827717730"
|
||||
*/
|
||||
@Data
|
||||
public static class PhoneNumber implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String area;
|
||||
private String number;
|
||||
}
|
||||
|
||||
/**
|
||||
* The type Date.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user