| | |
| | | package com.ruoyi.ai.dto; |
| | | |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | public class AiChatMessageDto { |
| | | |
| | | private String role; |
| | | |
| | | private String content; |
| | | |
| | | private List<String> filePaths; |
| | | |
| | | public AiChatMessageDto(String role, String content) { |
| | | this.role = role; |
| | | this.content = content; |
| | | } |
| | | |
| | | public AiChatMessageDto(String role, String content, List<String> filePaths) { |
| | | this.role = role; |
| | | this.content = content; |
| | | this.filePaths = filePaths; |
| | | } |
| | | } |