type SqlAdaptor interface {
CreatTable(sqlStr string)
Insert(table string, data []map[string]interface{})
Update(table string, data map[string]interface{}, where map[string]interface{})
Delete(table string, where map[string]string)
Query(sqlStr string) []map[string]interface{}
}