Skip to content

Commit f1a56de

Browse files
MsThinkbinarywang
authored andcommitted
🎨 #3185 【企业微信】获取审批申请详情接口增加对位置控件和公式控件的支持
1 parent d96efae commit f1a56de

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/applydata/ContentValue.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import lombok.experimental.Accessors;
66

77
import java.io.Serializable;
8+
import java.math.BigDecimal;
89
import java.util.List;
910

1011
/**
@@ -50,6 +51,10 @@ public class ContentValue implements Serializable {
5051
@SerializedName("punch_correction")
5152
private PunchCorrection punchCorrection;
5253

54+
private Location location;
55+
56+
private Formula formula;
57+
5358
/**
5459
* The type Date.
5560
*/
@@ -215,6 +220,31 @@ public static class PunchCorrection implements Serializable {
215220
private static final long serialVersionUID = 2120523160034749170L;
216221
private String state;
217222
private Long time;
223+
private Integer version;
224+
@SerializedName("daymonthyear")
225+
private Long dayMonthYear;
226+
}
227+
228+
/**
229+
* The type Location
230+
*/
231+
@Data
232+
public static class Location implements Serializable {
233+
private static final long serialVersionUID = 2480012159725572839L;
234+
private BigDecimal latitude;
235+
private BigDecimal longitude;
236+
private String title;
237+
private String address;
238+
private Long time;
239+
}
240+
241+
/**
242+
* The type Formula
243+
*/
244+
@Data
245+
public static class Formula implements Serializable {
246+
private static final long serialVersionUID = 816968197271971247L;
247+
private String value;
218248
}
219249

220250
}

0 commit comments

Comments
 (0)