wangting
2024-03-15 00c38a06a71962d37a23c8fcd35dcef979df57a5
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;
    }
}