Skip to content

Commit 3bed7d6

Browse files
author
Shangmin Dou
committed
<fix>[ai]: add totalScore and endTime fields to SDK inventory
Resolves: ZSTAC-72079 Change-Id: I56358d8064ae020e564f2682518f215c8bb96bd5
1 parent e835b3a commit 3bed7d6

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

sdk/src/main/java/org/zstack/sdk/ModelEvaluationTaskInventory.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,4 +228,20 @@ public java.lang.Integer getReadTimeout() {
228228
return this.readTimeout;
229229
}
230230

231+
public java.lang.Double totalScore;
232+
public void setTotalScore(java.lang.Double totalScore) {
233+
this.totalScore = totalScore;
234+
}
235+
public java.lang.Double getTotalScore() {
236+
return this.totalScore;
237+
}
238+
239+
public java.sql.Timestamp endTime;
240+
public void setEndTime(java.sql.Timestamp endTime) {
241+
this.endTime = endTime;
242+
}
243+
public java.sql.Timestamp getEndTime() {
244+
return this.endTime;
245+
}
246+
231247
}

0 commit comments

Comments
 (0)