Skip to content

Commit

Permalink
🎨 #3185 【企业微信】获取审批申请详情接口增加对位置控件和公式控件的支持
Browse files Browse the repository at this point in the history
  • Loading branch information
MsThink authored and binarywang committed Dec 13, 2023
1 parent d96efae commit f1a56de
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import lombok.experimental.Accessors;

import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;

/**
Expand Down Expand Up @@ -50,6 +51,10 @@ public class ContentValue implements Serializable {
@SerializedName("punch_correction")
private PunchCorrection punchCorrection;

private Location location;

private Formula formula;

/**
* The type Date.
*/
Expand Down Expand Up @@ -215,6 +220,31 @@ public static class PunchCorrection implements Serializable {
private static final long serialVersionUID = 2120523160034749170L;
private String state;
private Long time;
private Integer version;
@SerializedName("daymonthyear")
private Long dayMonthYear;
}

/**
* The type Location
*/
@Data
public static class Location implements Serializable {
private static final long serialVersionUID = 2480012159725572839L;
private BigDecimal latitude;
private BigDecimal longitude;
private String title;
private String address;
private Long time;
}

/**
* The type Formula
*/
@Data
public static class Formula implements Serializable {
private static final long serialVersionUID = 816968197271971247L;
private String value;
}

}

0 comments on commit f1a56de

Please sign in to comment.