We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@table("text_tble") @pk(value = { "key"}) public class MyBean{ @column public String key;
@Column @ColDefine(type=ColType.MYSQL_JSON) public List<StructA> my_list; //
}
直接从db中查询得到的my_list是NutMap的ArrayList MyBeandhs1 = dao.fetch(MyBean.class, Cnd.where(。。。))
这是正常的吗? 我期望能直接得到StructA的ArrayLis啊,有没有解决方法?
The text was updated successfully, but these errors were encountered:
试试 数组形式
Sorry, something went wrong.
No branches or pull requests
@table("text_tble")
@pk(value = { "key"})
public class MyBean{
@column
public String key;
}
直接从db中查询得到的my_list是NutMap的ArrayList
MyBeandhs1 = dao.fetch(MyBean.class, Cnd.where(。。。))
这是正常的吗? 我期望能直接得到StructA的ArrayLis啊,有没有解决方法?
The text was updated successfully, but these errors were encountered: