From 1a35b30c7e9a1b35711391fee4811e0d02e27b30 Mon Sep 17 00:00:00 2001 From: b2894lxlx <517289602@qq.com> Date: Thu, 22 May 2025 10:28:37 +0800 Subject: [PATCH] 250522 --- .../com/gxwebsoft/law/entity/ChatMessage.java | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/main/java/com/gxwebsoft/law/entity/ChatMessage.java diff --git a/src/main/java/com/gxwebsoft/law/entity/ChatMessage.java b/src/main/java/com/gxwebsoft/law/entity/ChatMessage.java new file mode 100644 index 0000000..9165f9c --- /dev/null +++ b/src/main/java/com/gxwebsoft/law/entity/ChatMessage.java @@ -0,0 +1,50 @@ +package com.gxwebsoft.law.entity; + +import com.baomidou.mybatisplus.annotation.*; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.time.LocalDateTime; +import java.util.List; +import java.util.Map; + +/** + * 机构 + * + * @author LX + * @since 2025-04-14 00:35:34 + */ +@Data +@EqualsAndHashCode(callSuper = false) +@ApiModel(value = "LawOrg对象", description = "机构") +@TableName("law_org") +public class ChatMessage implements Serializable { + private static final long serialVersionUID = 1L; + + @TableField(exist = false) + private String query; + + @TableField(exist = false) + private String inputs; + + @TableField(exist = false) + private String responseMode; + + @TableField(exist = false) + private String user; + + @TableField(exist = false) + private String conversationId; + + @TableField(exist = false) + private String type; + + @TableField(exist = false) + private Integer requestType; + + @TableField(exist = false) + private Map files; +}