dbpersonApi.go
@@ -129,11 +129,13 @@ return persons,nil } func (api DbPersonApi) GetPersonTotal () (total int64,err error) { func (api DbPersonApi) GetPersonTotal (tableId string) (total int64,err error) { url := BASIC_URL + DATA_URL_PREFIX + "/dbperson/getPersonTotal" client := NewClient() body,err := client.DoGetRequest(url, nil,nil) paramBody := map[string]string{ "tableId": tableId, } body,err := client.DoGetRequest(url, paramBody,nil) if err != nil { return 0,err }