io.github.pleuvoir.sql.kit.DataModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-metadata-plugin Show documentation
Show all versions of sql-metadata-plugin Show documentation
Execute SQL to return result set metadata easily.
package io.github.pleuvoir.sql.kit;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import lombok.Data;
@Data
public class DataModel implements DataModelHelper {
private Map dataModel = new ConcurrentHashMap<>();
public DataModel addData(String key, Object value) {
dataModel.put(key, value);
return this;
}
}