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.
109 lines
1.2 KiB
109 lines
1.2 KiB
3 months ago
|
import { BaseEntity, PageQuery } from '@/api/base';
|
||
|
|
||
|
export interface TenderTaskVO {
|
||
|
/**
|
||
|
* 模型所属行业
|
||
|
*/
|
||
|
taskIndustry: string;
|
||
|
|
||
|
/**
|
||
|
* 模型所属区域
|
||
|
*/
|
||
|
taskRegion: string;
|
||
|
|
||
|
/**
|
||
|
* 任务名称
|
||
|
*/
|
||
|
taskName: string;
|
||
|
|
||
|
/**
|
||
|
* 文档名称
|
||
|
*/
|
||
|
documentName: string;
|
||
|
|
||
|
/**
|
||
|
* ossid
|
||
|
*/
|
||
|
ossId: string | number;
|
||
|
|
||
|
/**
|
||
|
* 当前状态
|
||
|
|
||
|
*/
|
||
|
progressStatus: string;
|
||
|
|
||
|
}
|
||
|
|
||
|
export interface TenderTaskForm extends BaseEntity {
|
||
|
/**
|
||
|
* 模型所属行业
|
||
|
*/
|
||
|
taskIndustry?: string;
|
||
|
|
||
|
/**
|
||
|
* 模型所属区域
|
||
|
*/
|
||
|
taskRegion?: string;
|
||
|
|
||
|
/**
|
||
|
* 任务名称
|
||
|
*/
|
||
|
taskName?: string;
|
||
|
|
||
|
/**
|
||
|
* 文档名称
|
||
|
*/
|
||
|
documentName?: string;
|
||
|
|
||
|
/**
|
||
|
* ossid
|
||
|
*/
|
||
|
ossId?: string | number;
|
||
|
|
||
|
/**
|
||
|
* 当前状态
|
||
|
|
||
|
*/
|
||
|
progressStatus?: string;
|
||
|
|
||
|
}
|
||
|
|
||
|
export interface TenderTaskQuery extends PageQuery {
|
||
|
|
||
|
/**
|
||
|
* 模型所属行业
|
||
|
*/
|
||
|
taskIndustry?: string;
|
||
|
|
||
|
/**
|
||
|
* 模型所属区域
|
||
|
*/
|
||
|
taskRegion?: string;
|
||
|
|
||
|
/**
|
||
|
* 任务名称
|
||
|
*/
|
||
|
taskName?: string;
|
||
|
|
||
|
/**
|
||
|
* 文档名称
|
||
|
*/
|
||
|
documentName?: string;
|
||
|
|
||
|
/**
|
||
|
* ossid
|
||
|
*/
|
||
|
ossId?: string | number;
|
||
|
|
||
|
/**
|
||
|
* 当前状态
|
||
|
|
||
|
*/
|
||
|
progressStatus?: string;
|
||
|
|
||
|
/**
|
||
|
* 日期范围参数
|
||
|
*/
|
||
|
params?: any;
|
||
|
}
|