wangting
2024-12-25 9e18636bed4fc3fceec08ca25d6c7916d4d9a429
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;
    }
}