2025-05-12 14:07:25 +08:00

81 lines
1.1 KiB
Java

package com.yupi.springbootinit.model.entity;
import com.baomidou.mybatisplus.annotation.*;
import java.util.Date;
import lombok.Data;
/**
* 图表信息表
* @TableName chart
*/
@TableName(value ="chart")
@Data
public class Chart {
/**
* id
*/
@TableId(type = IdType.ASSIGN_ID)
private Long id;
/**
* 名称
*/
private String name;
/**
* 分析目标
*/
private String goal;
/**
* 图表数据
*/
private String chartData;
/**
* 图表类型
*/
private String chartType;
/**
* 生成的图表数据
*/
private String genChart;
/**
* 生成的分析结论
*/
private String genResult;
/**
* 任务状态
*/
private String status;
/**
* 执行信息
*/
private String execMessage;
/**
* 创建用户 id
*/
private Long userId;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 是否删除
*/
@TableLogic
private Integer isDelete;
}