package com.iailab.module.mcs.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 模型信息表
|
*
|
* @author lirm ${email}
|
* @since 1.0.0 2023-06-21
|
*/
|
@Data
|
@TableName("t_st_model")
|
public class StModelEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
/**
|
* 模型编码
|
*/
|
private String modelCode;
|
|
/**
|
* 模型名称
|
*/
|
private String modelName;
|
|
/**
|
* 模型父级
|
*/
|
private String modelParent;
|
|
/**
|
* 模型类型
|
*/
|
private String modelType;
|
|
/**
|
* 模型路径
|
*/
|
private String modelPath;
|
|
/**
|
* 类名
|
*/
|
private String className;
|
|
/**
|
* 方法名
|
*/
|
private String methodName;
|
|
/**
|
* 参数结构
|
*/
|
private String paramsStructure;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 回路
|
*/
|
private String modelLoop;
|
|
/**
|
* 执行顺序
|
*/
|
private Integer runSort;
|
|
/**
|
* 运行时间
|
*/
|
private Date runTime;
|
|
/**
|
* 是否启用
|
*/
|
private Integer isEnable;
|
|
/**
|
* 创建人
|
*/
|
private Long creator;
|
|
/**
|
* 创建时间
|
*/
|
private Date createDate;
|
|
/**
|
* 修改人
|
*/
|
private Long updater;
|
|
/**
|
* 修改时间
|
*/
|
private Date updateDate;
|
|
/**
|
* 模型版本
|
*/
|
private String modelVersion;
|
}
|