package com.zy.ai.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.io.Serializable; import java.util.Date; @Data @TableName("sys_ai_data_analysis_report") public class AiDataAnalysisReport implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Long id; @TableField("period_type") private String periodType; @TableField("period_start") private Date periodStart; @TableField("period_end") private Date periodEnd; @TableField("trigger_type") private String triggerType; private String status; private String summary; @TableField("structured_data") private String structuredData; @TableField("llm_call_count") private Integer llmCallCount; @TableField("prompt_tokens") private Integer promptTokens; @TableField("completion_tokens") private Integer completionTokens; @TableField("total_tokens") private Integer totalTokens; @TableField("error_message") private String errorMessage; @TableField("local_file_path") private String localFilePath; @TableField("upload_status") private String uploadStatus; @TableField("create_time") private Date createTime; @TableField("finish_time") private Date finishTime; }