🎨 #3185 【企业微信】获取审批申请详情接口增加对位置控件和公式控件的支持
This commit is contained in:
@@ -5,6 +5,7 @@ import lombok.Data;
|
|||||||
import lombok.experimental.Accessors;
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.math.BigDecimal;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -50,6 +51,10 @@ public class ContentValue implements Serializable {
|
|||||||
@SerializedName("punch_correction")
|
@SerializedName("punch_correction")
|
||||||
private PunchCorrection punchCorrection;
|
private PunchCorrection punchCorrection;
|
||||||
|
|
||||||
|
private Location location;
|
||||||
|
|
||||||
|
private Formula formula;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The type Date.
|
* The type Date.
|
||||||
*/
|
*/
|
||||||
@@ -215,6 +220,31 @@ public class ContentValue implements Serializable {
|
|||||||
private static final long serialVersionUID = 2120523160034749170L;
|
private static final long serialVersionUID = 2120523160034749170L;
|
||||||
private String state;
|
private String state;
|
||||||
private Long time;
|
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user