wangting
2024-04-08 6c0fc4bd5bec5e21f1a1176c8687b4d35ff2ddf6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.vci.client.common.datatype;
 
import com.vci.omd.dataType.VTDataType;
 
public class VTBoolean extends VTDataType{
    //默认值
    public static boolean defaultValue;
    public static int defVInMode;
    public boolean value;
    
    public boolean getValue(){
        return this.value;
    }
    
    public VTBoolean(boolean value){
        this.value = value;
    }
}