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.
35 lines
498 B
35 lines
498 B
5 months ago
|
import { BaseEntity, PageQuery } from '@/api/base';
|
||
|
|
||
|
export interface DocumentTaskResultsVO {
|
||
|
/**
|
||
|
* 任务结果
|
||
|
*/
|
||
|
result?: string;
|
||
|
}
|
||
|
|
||
|
export interface DocumentTaskResultsForm extends BaseEntity {
|
||
|
}
|
||
|
|
||
|
export interface DocumentTaskResultsQuery extends PageQuery {
|
||
|
|
||
|
/**
|
||
|
* id
|
||
|
*/
|
||
|
id?: string | number;
|
||
|
|
||
|
/**
|
||
|
* 任务id
|
||
|
*/
|
||
|
documentTaskId?: string | number;
|
||
|
|
||
|
/**
|
||
|
* 任务结果
|
||
|
*/
|
||
|
result?: string;
|
||
|
|
||
|
/**
|
||
|
* 日期范围参数
|
||
|
*/
|
||
|
params?: any;
|
||
|
}
|