wangting
2024-11-14 aa6f213ac00f69c8812b0d6a97232a1f1a9b7e44
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;
    }
}