package com.iailab.module.ai.dal.dataobject.schedulesuggest;
|
|
import lombok.*;
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.iailab.framework.mybatis.core.dataobject.BaseDO;
|
|
import static com.baomidou.mybatisplus.annotation.IdType.ASSIGN_ID;
|
|
/**
|
* 大模型调度建议 DO
|
*
|
* @author 超级管理员
|
*/
|
@TableName("ai_schedule_suggest")
|
@KeySequence("ai_schedule_suggest_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
@Builder
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class ScheduleSuggestDO extends BaseDO {
|
|
/**
|
* id
|
*/
|
@TableId(value = "id",type = ASSIGN_ID)
|
private Long id;
|
/**
|
* 模型id
|
*/
|
private Long modelId;
|
/**
|
* 会话id
|
*/
|
private Long conversationId;
|
/**
|
* 消息id
|
*/
|
private Long messageId;
|
/**
|
* 调度建议
|
*/
|
private String content;
|
/**
|
* 状态(0-未处理 1-已采纳 2-已忽略)
|
*/
|
private Integer status;
|
|
}
|