Junjie
21 小时以前 42ce1f4b6f9df984d14e29f9d9ff188de7f3c6d7
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
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_mcp_call")
public class AiAutoTuneMcpCall implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @TableField("agent_job_id")
    private Long agentJobId;
 
    @TableField("call_seq")
    private Integer callSeq;
 
    @TableField("tool_name")
    private String toolName;
 
    private String status;
 
    @TableField("dry_run")
    private Integer dryRun;
 
    @TableField("apply_job_id")
    private Long applyJobId;
 
    @TableField("success_count")
    private Integer successCount;
 
    @TableField("reject_count")
    private Integer rejectCount;
 
    @TableField("duration_ms")
    private Long durationMs;
 
    @TableField("request_json")
    private String requestJson;
 
    @TableField("response_json")
    private String responseJson;
 
    @TableField("error_message")
    private String errorMessage;
 
    @TableField("create_time")
    private Date createTime;
}