mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 08:25:07 +00:00
11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
import { ModelDataStatusEnum } from '@/constants/model';
|
|
|
|
export interface PgModelDataItemType {
|
|
id: string;
|
|
q: string;
|
|
a: string;
|
|
status: `${ModelDataStatusEnum}`;
|
|
model_id: string;
|
|
user_id: string;
|
|
}
|