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
23
24
25
26
27
package com.vci.client.framework.rightdistribution.object;
 
import com.vci.corba.omd.btm.BtmItem;
 
public class BizTypeEx {
 
    private BtmItem _bt;
    
    public BizTypeEx(BtmItem bt) {
        _bt = bt;
    }
    
    public BtmItem getBizType() {
        return _bt;
    }
    
    public void setBizType(BtmItem bt) {
        _bt = bt;
    }
    
    public String toString() {
        if (_bt != null)
            return String.format("%s [%s]", _bt.name, _bt.label);
        else
            return "";
    }
}