houzhongjian
2025-06-12 a01ef141b18dd249df9adc93612501d782c466a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.iailab.module.ai.controller.admin.chat.vo.message;
 
import com.iailab.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.time.LocalDateTime;
 
import static com.iailab.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
 
@Schema(description = "管理后台 - AI 聊天消息查询 Request VO")
@Data
public class AiChatMessageReqVO extends PageParam {
 
    @Schema(description = "对话编号", example = "2048")
    private Long conversationId;
 
    @Schema(description = "用户编号", example = "1024")
    private Long userId;
 
    @Schema(description = "消息内容", example = "你好")
    private String content;
 
    @Schema(description = "创建时间")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] createTime;
 
}