I'm trying to fetch a list from MySQL on android but I'm getting
[com.trycatchsoft.app.Models.KatPojo@7553fa]
as output instead of list.
Here is my pojo file:
package com.trycatchsoft.app.Models;
public class KatPojo {
private Boolean tf;
private String veri;
private String verid;
public Boolean getTf() {
return tf;
}
public void setTf(Boolean tf) {
this.tf = tf;
}
public String getVeri() {
return veri;
}
public void setVeri(String veri) {
this.veri = veri;
}
public String getVerid() {
return verid;
}
public void setVerid(String verid) {
this.verid = verid;
}
}