260720
This commit is contained in:
47
src/api/ai/aiChatList/model/index.ts
Normal file
47
src/api/ai/aiChatList/model/index.ts
Normal file
@@ -0,0 +1,47 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
export interface AiChatList {
|
||||
//
|
||||
id?: number;
|
||||
//
|
||||
conversationId?: string;
|
||||
//
|
||||
userId?: number;
|
||||
//
|
||||
roleId?: number;
|
||||
//
|
||||
roleName?: string;
|
||||
//
|
||||
roleDesc?: string;
|
||||
// 状态, 0正常, 1冻结
|
||||
status?: number;
|
||||
// 是否删除, 0否, 1是
|
||||
deleted?: number;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
// 注册时间
|
||||
createTime?: string;
|
||||
// 修改时间
|
||||
updateTime?: string;
|
||||
//
|
||||
title?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 搜索条件
|
||||
*/
|
||||
export interface AiChatListParam extends PageParam {
|
||||
id?: number;
|
||||
conversationId?: string;
|
||||
userId?: number;
|
||||
roleId?: number;
|
||||
roleName?: string;
|
||||
roleDesc?: string;
|
||||
status?: number;
|
||||
deleted?: number;
|
||||
title?: string;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user