AiHisVo.java 658 B

12345678910111213141516171819202122232425
  1. package jnpf.base.model.ai;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * @author JNPF开发平台组
  6. * @version v5.2.0
  7. * @copyright 引迈信息技术有限公司
  8. * @date 2025/2/21 9:49:27
  9. */
  10. @Data
  11. @Schema(description = "对话记录")
  12. public class AiHisVo {
  13. @Schema(description = "记录id")
  14. private String id;
  15. @Schema(description = "问题内容")
  16. private String questionText;
  17. @Schema(description = "对话内容")
  18. private String content;
  19. @Schema(description = "类型:0-ai,1-用户")
  20. private Integer type;
  21. @Schema(description = "创建时间")
  22. private Long creatorTime;
  23. }