修改部分规则代码

This commit is contained in:
zouju
2026-02-09 11:15:26 +08:00
parent a78781782e
commit e07b11ef95
3 changed files with 74 additions and 3 deletions

View File

@@ -34,6 +34,10 @@ public class Algorithm
@Excel(name = "算法描述")
private String description;
/** 算法配置 */
@Excel(name = "算法配置")
private String algoConfig;
/** 算法参数定义信息 */
private List<AlgorithmParam> algorithmParamList;
@@ -87,6 +91,16 @@ public class Algorithm
return description;
}
public void setAlgoConfig(String algoConfig)
{
this.algoConfig = algoConfig;
}
public String getAlgoConfig()
{
return algoConfig;
}
public List<AlgorithmParam> getAlgorithmParamList()
{
return algorithmParamList;
@@ -105,6 +119,7 @@ public class Algorithm
.append("type", getType())
.append("codePath", getCodePath())
.append("description", getDescription())
.append("algoConfig", getAlgoConfig())
.append("algorithmParamList", getAlgorithmParamList())
.toString();
}