rows1,err:=orm.Raw("SELECT TABLE_NAME,TABLE_COMMENT FROM information_schema.TABLES WHERE table_schema= '"+m.GetDbName()+"'").Rows()
varerrerror
varrows1*sql.Rows
ifm.GetTableNames()!=""{
rows1,err=orm.Raw("SELECT TABLE_NAME,TABLE_COMMENT FROM information_schema.TABLES WHERE table_schema= '"+m.GetDbName()+"'and TABLE_NAME IN("+m.GetTableNames()+")").Rows()
fmt.Println("getTables:"+m.GetTableNames())
fmt.Println("SELECT TABLE_NAME,TABLE_COMMENT FROM information_schema.TABLES WHERE table_schema= '"+m.GetDbName()+"'and TABLE_NAME IN("+m.GetTableNames()+")")
}else{
rows1,err=orm.Raw("SELECT TABLE_NAME,TABLE_COMMENT FROM information_schema.TABLES WHERE table_schema= '"+m.GetDbName()+"'").Rows()