org.shoulder.batch.config.model.BatchInitializationSettings 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 扩展-批处理模块,提供批量数据导入、导出、异步校验、导入历史记录管理等能力。
The newest version!
package org.shoulder.batch.config.model;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
/**
* batch 配置
*
* @author lym
*/
@Data
@NoArgsConstructor
public class BatchInitializationSettings {
public List exportLocalizeConfigLocations;
public List exportFileConfigLocations;
}