package com.iailab.module.ai.controller.admin.questiontemplate.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 QuestionTemplatePageReqVO extends PageParam {
|
|
@Schema(description = "模型id", example = "11609")
|
private String modelId;
|
|
@Schema(description = "问题编号")
|
private String questionCode;
|
|
@Schema(description = "问题名称", example = "赵六")
|
private String questionName;
|
|
@Schema(description = "问题内容")
|
private String questionContent;
|
|
@Schema(description = "输入个数")
|
private Integer dataLength;
|
|
@Schema(description = "是否启用(0禁用 1启用)")
|
private Integer isEnable;
|
|
@Schema(description = "备注", example = "随便")
|
private String remark;
|
|
@Schema(description = "创建时间")
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
private LocalDateTime[] createTime;
|
|
}
|