Windchill
Tu小二
这个作者很懒,什么都没留下…
展开
-
Windchill二次开发-查询篇-部件查询
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 SearchCondition原创 2013-12-07 14:40:50 · 3222 阅读 · 0 评论 -
Windchill二次开发-查询篇-文档查询
继续介绍在系统中如何查询WTDocument对象public static WTDocument getDoc(String num){ if(num == null || num.trim().length()==0){ return null ; } WTDocument doc = null ; QueryResult qr ; try { QuerySpec原创 2013-12-07 14:52:16 · 4343 阅读 · 0 评论 -
Windchill二次开发-查询篇-部件查询
今天给大家介绍如何查询系统中的WTPart对象 public static WTPart getPart(String num){ if(num == null || num.trim().length()==0){ return null ; } WTPart part = null ; ...2013-12-07 14:40:00 · 1112 阅读 · 1 评论