package dbquery
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func Test_GetTotal(t *testing.T) {
|
|
Connect()
|
|
total := GetTotal("dev_tetel_net", TABLE_CONFIG, "id")
|
|
t.Log(total)
|
|
}
|