guang
2023-05-06 56608e48288a97e59fb97340187f57f4a4fcf11e
src/main/java/com/hx/other/service/model/QueryRecord.java
@@ -19,7 +19,7 @@
    @Column(comment = "查询内容", type = MySqlTypeConstant.VARCHAR, isNull = false)
    private String content;
    @Column(comment = "向AI查询内容", length = 5000, type = MySqlTypeConstant.VARCHAR, isNull = false)
    @Column(comment = "向AI查询内容", length = 5000, type = MySqlTypeConstant.VARCHAR)
    private String aiQueryContent;
    @Column(comment = "AI返回结果", length = 1000, type = MySqlTypeConstant.VARCHAR)
@@ -37,6 +37,6 @@
    @Column(comment = "sql查询的时间,豪秒数", length = 13, type = MySqlTypeConstant.BIGINT)
    private Long sqlTime;
    @Column(comment = "是否来自模拟", length = 2, type = MySqlTypeConstant.TINYINT)
    @Column(comment = "是否来自模板", length = 2, type = MySqlTypeConstant.TINYINT)
    private Integer isFromQuery = BaseEntity.NO;
}