You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.6 KiB
Java
84 lines
1.6 KiB
Java
package com.supervision.model;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* 诊断进程表
|
|
* @TableName vp_rasa_model_info
|
|
*/
|
|
@TableName(value ="vp_rasa_model_info")
|
|
@Data
|
|
@ApiModel
|
|
public class RasaModelInfo implements Serializable {
|
|
|
|
/**
|
|
* 主键
|
|
*/
|
|
@TableId
|
|
private String id;
|
|
|
|
/**
|
|
* 模型ID 与vp_disease的主键进行关联
|
|
*/
|
|
@ApiModelProperty("模型ID")
|
|
private String modelId;
|
|
|
|
/**
|
|
* 中文注释
|
|
*/
|
|
@ApiModelProperty("中文注释")
|
|
private String description;
|
|
|
|
/**
|
|
* 模型对应的端口号
|
|
*/
|
|
@ApiModelProperty("模型对应的端口号")
|
|
private Integer port;
|
|
|
|
|
|
/**
|
|
* 训练状态 0:训练失败 1:训练成功
|
|
*/
|
|
@ApiModelProperty("训练状态")
|
|
private Integer tranStatus;
|
|
|
|
/**
|
|
* 启动状态 -1:未启动 0:启动失败 1:启动成功
|
|
*/
|
|
@ApiModelProperty("启动状态")
|
|
private Integer serverStatus;
|
|
|
|
|
|
/**
|
|
* 创建人ID
|
|
*/
|
|
private String createUserId;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private LocalDateTime createTime;
|
|
|
|
/**
|
|
* 更新人
|
|
*/
|
|
private String updateUserId;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
private LocalDateTime updateTime;
|
|
|
|
@TableField(exist = false)
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
}
|