[improvement][headless] Merge struct and SQL query code, unify the queries. (#680)

This commit is contained in:
lexluo09
2024-01-22 22:54:07 +08:00
committed by GitHub
parent be158a1776
commit 163e782f51
188 changed files with 619 additions and 717 deletions

View File

@@ -16,15 +16,6 @@ public class Parameter {
private String dataType;
private String module;
private List<Object> candidateValues;
public Parameter(String name, String value, String comment, String dataType, String module) {
this.name = name;
this.value = value;
this.comment = comment;
this.dataType = dataType;
this.module = module;
}
public Parameter(String name, String value, String comment, String description, String dataType, String module) {
this.name = name;
this.value = value;