我目前正在使用以下映射:
@Select ("select count(*) from something where id = 2344")
int userExists();
但我想有类似的东西:
@Select ("select count(*) from something where id = 2344")
boolean userExists();
我可以将 0 转换为 false 并将所有 > 0 转换为 true 吗?
我正在使用甲骨文。因此我希望 my-batis 提供某种返回类型映射。