- 浏览: 1351 次
- 性别:
- 来自: 上海
最新评论
文章列表
今天给大家介绍如何查询系统中的WTPart对象
public static WTPart getPart(String num){
if(num == null || num.trim().length()==0){
return null ;
}
WTPart part = null ;
try {
QuerySpec qs = new QuerySpec(WTPart.class) ;
qs.appendWhere(new Searc ...