
com.github.risedragon.mysql.config.ConfigMetaInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-mysqlclient Show documentation
Show all versions of spring-mysqlclient Show documentation
A very simple/efficient Mysql Client Framework
The newest version!
package com.github.risedragon.mysql.config;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
public class ConfigMetaInfo {
public final String namespace;
public final List tables = new LinkedList();
public final List metas = new LinkedList();
public final Map sqls = new LinkedHashMap();
public ConfigMetaInfo(String namespace) {
this.namespace = namespace;
}
public void addPsql(String id, String value) {
sqls.put(namespace + '.' + id, value); // key=namespace+'.'+id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy