首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

nutz学习记要

2012-10-27 
nutz学习记录ListInteger idsCastors.me().castTo(ids, int[].class)转换一个 POJO 到另外的类型 组装

nutz学习记录
List<Integer> ids;
Castors.me().castTo(ids, int[].class)
转换一个 POJO 到另外的类型

组装自定义条件为下面这样:
where id in ('1','2','3');
可以使用nutz
Cnd.exp("id","IN",List)
  

热点排行