mirror of
https://github.com/labring/FastGPT.git
synced 2026-03-24 01:08:06 +08: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;
|
|
}
|