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.
76 lines
969 B
76 lines
969 B
import { BaseEntity, PageQuery } from '@/api/base';
|
|
|
|
export interface DocumentTasksVO {
|
|
id: string | number;
|
|
/**
|
|
* 任务名称
|
|
*/
|
|
taskName: string;
|
|
|
|
/**
|
|
* 文档名称
|
|
*/
|
|
documentName: string;
|
|
|
|
/**
|
|
* 预计时间
|
|
*/
|
|
estimatedCompletionTime: string;
|
|
|
|
/**
|
|
* 状态
|
|
*/
|
|
progressStatus: string;
|
|
|
|
}
|
|
|
|
export interface DocumentTasksForm extends BaseEntity {
|
|
/**
|
|
* 任务名称
|
|
*/
|
|
taskName?: string;
|
|
|
|
/**
|
|
* 文档名称
|
|
*/
|
|
documentName?: string;
|
|
|
|
/**
|
|
* 预计时间
|
|
*/
|
|
estimatedCompletionTime?: string;
|
|
|
|
/**
|
|
* 状态
|
|
*/
|
|
progressStatus?: string;
|
|
|
|
}
|
|
|
|
export interface DocumentTasksQuery extends PageQuery {
|
|
|
|
/**
|
|
* 任务名称
|
|
*/
|
|
taskName?: string;
|
|
|
|
/**
|
|
* 文档名称
|
|
*/
|
|
documentName?: string;
|
|
|
|
/**
|
|
* 预计时间
|
|
*/
|
|
estimatedCompletionTime?: string;
|
|
|
|
/**
|
|
* 状态
|
|
*/
|
|
progressStatus?: string;
|
|
|
|
/**
|
|
* 日期范围参数
|
|
*/
|
|
params?: any;
|
|
}
|
|
|