type Options struct {
Type DBType `mapstructrue:"type"`
Host string `mapstructrue:"host"`
Port int `mapstructrue:"port"`
User string `mapstructrue:"user"`
Password string `mapstructrue:"password"`
DbName string `mapstructrue:"dbname"`
Extra string `mapstructrue:"extra"`
}