You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
1.1 KiB
85 lines
1.1 KiB
import { BaseEntity, PageQuery } from '@/api/base';
|
|
|
|
export interface ModelUserPromptssettingVO {
|
|
/**
|
|
* id
|
|
*/
|
|
id: string | number;
|
|
|
|
/**
|
|
* 模型所属行业
|
|
*/
|
|
taskIndustry: string;
|
|
|
|
/**
|
|
* 模型所属区域
|
|
*/
|
|
taskRegion: string;
|
|
|
|
/**
|
|
* 任务类型(名称)
|
|
*/
|
|
taskName: string;
|
|
|
|
/**
|
|
* 用户id
|
|
*/
|
|
userId: string | number;
|
|
|
|
}
|
|
|
|
export interface ModelUserPromptssettingForm extends BaseEntity {
|
|
/**
|
|
* id
|
|
*/
|
|
id?: string | number;
|
|
|
|
/**
|
|
* 模型所属行业
|
|
*/
|
|
taskIndustry?: string;
|
|
|
|
/**
|
|
* 模型所属区域
|
|
*/
|
|
taskRegion?: string;
|
|
|
|
/**
|
|
* 任务类型(名称)
|
|
*/
|
|
taskName?: string;
|
|
|
|
/**
|
|
* 用户id
|
|
*/
|
|
userId?: string | number;
|
|
|
|
}
|
|
|
|
export interface ModelUserPromptssettingQuery extends PageQuery {
|
|
|
|
/**
|
|
* 模型所属行业
|
|
*/
|
|
taskIndustry?: string;
|
|
|
|
/**
|
|
* 模型所属区域
|
|
*/
|
|
taskRegion?: string;
|
|
|
|
/**
|
|
* 任务类型(名称)
|
|
*/
|
|
taskName?: string;
|
|
|
|
/**
|
|
* 用户id
|
|
*/
|
|
userId?: string | number;
|
|
|
|
/**
|
|
* 日期范围参数
|
|
*/
|
|
params?: any;
|
|
}
|
|
|