com.jladder.datamodel.DataModelInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jladder Show documentation
Show all versions of jladder Show documentation
with java,a low code SDK,通用低代码开发包
package com.jladder.datamodel;
///
/// 数据模型信息
///
public class DataModelInfo
{
public DataModelInfo(String type, String path,String node, long lastWriteTime) {
this.type = type;
this.path = path;
this.node = node;
this.lastWriteTime = lastWriteTime;
this.enable=true;
}
///
/// 类型
///
public String type ;
///
/// 类型
///
public String path;
///
/// 节点
///
public String node;
///
/// 最后修改时间
///
public long lastWriteTime;
public void setEnable(boolean enable) {
this.enable = enable;
}
///
/// 是否可用
///
public boolean enable;
}