This commit is contained in:
2025-05-22 10:28:37 +08:00
parent bfbde8a0f5
commit 1a35b30c7e

View File

@@ -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<String, Object> files;
}