Skip to content
Open
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 @@ -21,7 +21,7 @@ public class FormFieldVariableDatetimeValue {
* <p> 示例值:1670227428803
*/
@SerializedName("value")
private Integer value;
private Long value;
/**
* 时区
* <p> 示例值:+08:00
Expand Down Expand Up @@ -50,11 +50,11 @@ public static Builder newBuilder() {
return new Builder();
}

public Integer getValue() {
public Long getValue() {
return this.value;
}

public void setValue(Integer value) {
public void setValue(Long value) {
this.value = value;
}

Expand All @@ -71,7 +71,7 @@ public static class Builder {
* 毫秒的时间戳
* <p> 示例值:1670227428803
*/
private Integer value;
private Long value;
/**
* 时区
* <p> 示例值:+08:00
Expand All @@ -85,7 +85,7 @@ public static class Builder {
* @param value
* @return
*/
public Builder value(Integer value) {
public Builder value(Long value) {
this.value = value;
return this;
}
Expand Down