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.
116 lines
1.3 KiB
116 lines
1.3 KiB
6 months ago
|
import { BaseEntity, PageQuery } from '@/api/base';
|
||
|
|
||
|
export interface ContractualTasksVO {
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
id: string | number;
|
||
|
|
||
|
/**
|
||
|
* 模型所属行业
|
||
|
*/
|
||
|
taskIndustry: string;
|
||
|
|
||
|
/**
|
||
|
* 模型所属区域
|
||
|
*/
|
||
|
taskRegion: string;
|
||
|
|
||
|
/**
|
||
|
* 合同任务名称
|
||
|
*/
|
||
|
contractTaskName: string;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
documentName: string;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
ossId: string | number;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
progressStatus: string;
|
||
|
|
||
|
}
|
||
|
|
||
|
export interface ContractualTasksForm extends BaseEntity {
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
id?: string | number;
|
||
|
|
||
|
/**
|
||
|
* 模型所属行业
|
||
|
*/
|
||
|
taskIndustry?: string;
|
||
|
|
||
|
/**
|
||
|
* 模型所属区域
|
||
|
*/
|
||
|
taskRegion?: string;
|
||
|
|
||
|
/**
|
||
|
* 合同任务名称
|
||
|
*/
|
||
|
contractTaskName?: string;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
documentName?: string;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
ossId?: string | number;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
progressStatus?: string;
|
||
|
|
||
|
}
|
||
|
|
||
|
export interface ContractualTasksQuery extends PageQuery {
|
||
|
|
||
|
/**
|
||
|
* 模型所属行业
|
||
|
*/
|
||
|
taskIndustry?: string;
|
||
|
|
||
|
/**
|
||
|
* 模型所属区域
|
||
|
*/
|
||
|
taskRegion?: string;
|
||
|
|
||
|
/**
|
||
|
* 合同任务名称
|
||
|
*/
|
||
|
contractTaskName?: string;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
documentName?: string;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
ossId?: string | number;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
progressStatus?: string;
|
||
|
|
||
|
/**
|
||
|
* 日期范围参数
|
||
|
*/
|
||
|
params?: any;
|
||
|
}
|