Junjie
1 天以前 13b2678b0d6402cefee85bafe4da69aa72528a28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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_auto_tune_job")
public class AiAutoTuneJob implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @TableField("trigger_type")
    private String triggerType;
 
    private String status;
 
    @TableField("start_time")
    private Date startTime;
 
    @TableField("finish_time")
    private Date finishTime;
 
    @TableField("has_active_tasks")
    private Integer hasActiveTasks;
 
    @TableField("prompt_scene_code")
    private String promptSceneCode;
 
    private String summary;
 
    @TableField("reasoning_digest")
    private String reasoningDigest;
 
    @TableField("snapshot_digest")
    private String snapshotDigest;
 
    @TableField("interval_before")
    private Integer intervalBefore;
 
    @TableField("interval_after")
    private Integer intervalAfter;
 
    @TableField("success_count")
    private Integer successCount;
 
    @TableField("reject_count")
    private Integer rejectCount;
 
    @TableField("error_message")
    private String errorMessage;
 
    @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("create_time")
    private Date createTime;
}