package com.iailab.module.ai.controller.admin.schedulesuggest.vo;
|
|
import lombok.*;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import com.iailab.framework.common.pojo.PageParam;
|
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 = "管理后台 - 大模型调度建议分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class ScheduleSuggestPageReqVO extends PageParam {
|
|
@Schema(description = "模型id", example = "5706")
|
private Long modelId;
|
|
@Schema(description = "会话id", example = "3684")
|
private Long conversationId;
|
|
@Schema(description = "消息id", example = "8512")
|
private Long messageId;
|
|
@Schema(description = "调度建议")
|
private String content;
|
|
@Schema(description = "状态(0-未处理 1-已采纳 2-已忽略)", example = "2")
|
private Integer status;
|
|
@Schema(description = "创建时间")
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
private LocalDateTime[] createTime;
|
|
}
|