渲染修改
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user