Browse Source

250522

master
梁欣 2 weeks ago
parent
commit
1a35b30c7e
  1. 50
      src/main/java/com/gxwebsoft/law/entity/ChatMessage.java

50
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<String, Object> files;
}
Loading…
Cancel
Save