数据库字段与实体类映射问题

我知道单表查询时候 数据库字段可以与对应的实体类属性映射,如果多表关联查询,查询的字段包含多个表中的字段,怎么和我的对象属性映射呢,不想用Record get数据库字段名的方式

评论区

lyh061619

2018-01-25 11:14

这个一样用就好了,在这举个例子给你,如级联查询:
Test test = Test.dao.findFirst("select a.id, b.name from tb_a a left join tb_b on b.id = a.bid limi 1");
Integer id = test.getId();
String name = test.get("name");就好了。

JFinal

2018-01-25 13:08

可以在 model 中添加相应的 getter 方法

热门反馈

扫码入社