渲染修改

This commit is contained in:
2025-11-19 10:50:32 +08:00
parent 769cece367
commit 0dcee95a45
4 changed files with 63 additions and 7 deletions

View File

@@ -176,6 +176,32 @@ public class TbCrontabTask extends BaseDTO {
this.description = description;
}
/**
* @description 元数据名称(来自 tb_crontab_task_meta.name
*/
private String metaName;
/**
* @description 元数据描述(来自 tb_crontab_task_meta.description
*/
private String metaDescription;
public String getMetaName() {
return metaName;
}
public void setMetaName(String metaName) {
this.metaName = metaName;
}
public String getMetaDescription() {
return metaDescription;
}
public void setMetaDescription(String metaDescription) {
this.metaDescription = metaDescription;
}
public Integer getConcurrent() {
return concurrent;
}