wangting
2024-11-27 3b3fd904b9b34e77445d749bca8c28beadcaf3db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.vci.client.oq.wrapper;
 
import com.vci.corba.omd.qtm.QTInfo;
 
/**
 * QueryTemplate: 查询模板, common, corba传递时通过xml转化成String 传递
 * QTInfo: idl定义的QT, 包含qtName, creator, creatorDate, qtText内容
 * QTWrapper_: 客户端对QTWrapper的封装
 * @author zhouhui
 *
 */
public class QTWrapper_ {
    public QTInfo qtWrapper;
    
    public QTWrapper_(QTInfo qtWrapper){
        this.qtWrapper = qtWrapper;
    }
    
    public String toString(){
        return qtWrapper.qtName;
    }
}