package com.iailab.module.ai.controller.admin.schedulesuggest.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.*;
|
import jakarta.validation.constraints.*;
|
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - 大模型调度建议新增/修改 Request VO")
|
@Data
|
public class ScheduleSuggestSaveReqVO {
|
|
@Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "26874")
|
private Long id;
|
|
@Schema(description = "模型id", requiredMode = Schema.RequiredMode.REQUIRED, example = "5706")
|
@NotNull(message = "模型id不能为空")
|
private Long modelId;
|
|
@Schema(description = "会话id", requiredMode = Schema.RequiredMode.REQUIRED, example = "3684")
|
@NotNull(message = "会话id不能为空")
|
private Long conversationId;
|
|
@Schema(description = "消息id", requiredMode = Schema.RequiredMode.REQUIRED, example = "8512")
|
@NotNull(message = "消息id不能为空")
|
private Long messageId;
|
|
@Schema(description = "调度建议")
|
private String content;
|
|
@Schema(description = "状态(0-未处理 1-已采纳 2-已忽略)", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
private Integer status;
|
|
private LocalDateTime createTime;
|
|
}
|