大神,我想请问一下,就是我自定义了sql,然后我要查询到的信息是其中数据的和(sum),还有其他的一些时间的信息,然后我自定义类去接收查询到的数据可是全都是null,是不是必须和数据库中的字段相同的类去接收才行????如果要接收到他统计后的字段该怎么办呢??
Sql sql = Sqls.create(
"select sum(changenum)as sc, changeReason, from_unixtime(UNIX_TIMESTAMP(time), '%y-%m-%d')as days from (select * from log_diamond where time > '2017-09-09')demo group by changeReason, days");
sql.setCallback(Sqls.callback.entities());
sql.setEntity(dao.getEntity(T1_moneyCountBean.class));
dao.execute(sql);
List<T1_moneyCountBean> list = sql.getList(T1_moneyCountBean.class);