From 1fd5ca964b15f180fae4e9a682029db285a4ff4d Mon Sep 17 00:00:00 2001 From: cbxbj Date: Tue, 3 Feb 2026 16:03:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AE=A1=E6=89=B9=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E4=B8=AD=E7=9A=84=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cp/bean/oa/applydata/ContentValue.java | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/applydata/ContentValue.java b/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/applydata/ContentValue.java index 92ec8a43e8..848e377791 100644 --- a/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/applydata/ContentValue.java +++ b/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/applydata/ContentValue.java @@ -58,6 +58,9 @@ public class ContentValue implements Serializable { private Formula formula; + @SerializedName("bank_account") + private BankAccount bankAccount; + /** * The type Date. */ @@ -68,6 +71,23 @@ public static class Date implements Serializable { @SerializedName("s_timestamp") private String timestamp; + + @SerializedName("timezone_info") + private TimezoneInfo timezoneInfo; + + /** + * The type TimezoneInfo. + */ + @Data + public static class TimezoneInfo implements Serializable { + private static final long serialVersionUID = 164839205748392017L; + + @SerializedName("zone_offset") + private String zoneOffset; + + @SerializedName("zone_desc") + private String zoneDesc; + } } /** @@ -228,6 +248,8 @@ public static class DataRange implements Serializable { private Long end; @SerializedName("new_duration") private Long duration; + @SerializedName("timezone_info") + private Date.TimezoneInfo timezoneInfo; } /** @@ -341,4 +363,55 @@ public static class Formula implements Serializable { private String value; } + /** + * The type BankAccount + */ + @Data + public static class BankAccount implements Serializable { + private static final long serialVersionUID = 938475610283746192L; + + @SerializedName("account_type") + private Long accountType; + + @SerializedName("account_name") + private String accountName; + + @SerializedName("account_number") + private String accountNumber; + + private String remark; + + private Bank bank; + + /** + * The type Bank + */ + @Data + public static class Bank implements Serializable { + private static final long serialVersionUID = 527384916203847561L; + + @SerializedName("bank_alias") + private String bankAlias; + + @SerializedName("bank_alias_code") + private String bankAliasCode; + + private String province; + + @SerializedName("province_code") + private Long provinceCode; + + private String city; + + @SerializedName("city_code") + private Long cityCode; + + @SerializedName("bank_branch_name") + private String bankBranchName; + + @SerializedName("bank_branch_id") + private String bankBranchId; + } + } + }