|
@@ -18,6 +18,9 @@ public class DifyCompletion {
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date date;
|
|
private Date date;
|
|
|
|
|
|
|
|
+ @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
+ private Date endDate;
|
|
|
|
+
|
|
private long userId;
|
|
private long userId;
|
|
|
|
|
|
private String status;
|
|
private String status;
|
|
@@ -28,6 +31,8 @@ public class DifyCompletion {
|
|
|
|
|
|
private String messageId;
|
|
private String messageId;
|
|
|
|
|
|
|
|
+ private String error;
|
|
|
|
+
|
|
public Long getId() {
|
|
public Long getId() {
|
|
return id;
|
|
return id;
|
|
}
|
|
}
|
|
@@ -60,6 +65,14 @@ public class DifyCompletion {
|
|
this.date = date;
|
|
this.date = date;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Date getEndDate() {
|
|
|
|
+ return endDate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setEndDate(Date endDate) {
|
|
|
|
+ this.endDate = endDate;
|
|
|
|
+ }
|
|
|
|
+
|
|
public long getUserId() {
|
|
public long getUserId() {
|
|
return userId;
|
|
return userId;
|
|
}
|
|
}
|
|
@@ -99,4 +112,12 @@ public class DifyCompletion {
|
|
public void setMessageId(String messageId) {
|
|
public void setMessageId(String messageId) {
|
|
this.messageId = messageId;
|
|
this.messageId = messageId;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getError() {
|
|
|
|
+ return error;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setError(String error) {
|
|
|
|
+ this.error = error;
|
|
|
|
+ }
|
|
}
|
|
}
|