This commit is contained in:
mindol1004
2024-09-25 10:32:37 +09:00
parent 9d1079fcbd
commit 4f3d7e659b
35 changed files with 549 additions and 269 deletions

View File

@@ -175,4 +175,13 @@ public abstract class AbstractBatchTask implements ApplicationContextAware {
return batchJobInfo.cronExpression();
}
/**
* 배치 작업의 설명을 반환합니다.
*
* @return 배치 작업의 설명
*/
public String description() {
return batchJobInfo.description();
}
}