org.shoulder.batch.constant.BatchConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shoulder-batch Show documentation
Show all versions of shoulder-batch Show documentation
Shoulder 扩展-批处理模块,提供批量数据导入、导出、异步校验、导入历史记录管理等能力。
package org.shoulder.batch.constant;
/**
* 导出类型
*
* @author lym
*/
public interface BatchConstants {
/**
* 批处理专用线程池名
*/
String BATCH_THREAD_POOL_NAME = "shoulderBatchThreadPool";
String CSV = "csv";
String EXCEL = "excel";
String JSON = "json";
String INDEX = "index";
String RESULT = "result";
String DETAIL = "detail";
}