Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

获取审批申请详情 - 增加Location(位置控件) 和 Formula( 公式控件) #3185

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}

}