模型字段取值bugfix

This commit is contained in:
2025-02-12 15:07:47 +08:00
parent 49644c99a9
commit 217b499c26
4 changed files with 75 additions and 7 deletions

View File

@@ -38,10 +38,15 @@ public class ModelDTO {
this.errorMsg = errorMsg;
}
public Evaluator getEvaluator() {
public Evaluator fetchEvaluator() {
return evaluator;
}
public String getEvaluatorInfo() {
return evaluator+"";
}
public String getText() {
return text;
}