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.
99 lines
1.7 KiB
99 lines
1.7 KiB
import { BaseEntity, PageQuery } from '@/api/base';
|
|
|
|
export interface DocumentTaskResultsVO {
|
|
/**
|
|
* 任务结果
|
|
*/
|
|
result?: string;
|
|
}
|
|
|
|
export interface DocumentTaskResultDetailVO {
|
|
/**
|
|
* 分类名称
|
|
*/
|
|
name: string;
|
|
/**
|
|
* 结果列表
|
|
*/
|
|
results: {
|
|
/**
|
|
* 唯一标识ID
|
|
*/
|
|
id?: string;
|
|
/**
|
|
* 序号
|
|
*/
|
|
serialNumber?: number;
|
|
/**
|
|
* 问题点名称
|
|
*/
|
|
issueName?: string;
|
|
/**
|
|
* 原文
|
|
*/
|
|
originalText?: string;
|
|
/**
|
|
* 比对原文
|
|
*/
|
|
comparedText?: string;
|
|
/**
|
|
* 修改后的内容
|
|
*/
|
|
modifiedContent?: string;
|
|
/**
|
|
* 展示修改情况
|
|
*/
|
|
modificationDisplay?: string;
|
|
/**
|
|
* 存在的问题
|
|
*/
|
|
existingIssues?: string;
|
|
/**
|
|
* 审查依据
|
|
*/
|
|
reviewBasis?: {
|
|
/**
|
|
* 审查内容
|
|
*/
|
|
reviewContent?: string;
|
|
/**
|
|
* 审查点
|
|
*/
|
|
reviewPoints?: string[];
|
|
};
|
|
/**
|
|
* 是否已读
|
|
*/
|
|
isRead?: string;
|
|
/**
|
|
* 是否采纳
|
|
*/
|
|
isAdopted?: string;
|
|
}[];
|
|
}
|
|
|
|
export interface DocumentTaskResultsForm extends BaseEntity {
|
|
}
|
|
|
|
export interface DocumentTaskResultsQuery extends PageQuery {
|
|
|
|
/**
|
|
* id
|
|
*/
|
|
id?: string | number;
|
|
|
|
/**
|
|
* 任务id
|
|
*/
|
|
documentTaskId?: string | number;
|
|
|
|
/**
|
|
* 任务结果
|
|
*/
|
|
result?: string;
|
|
|
|
/**
|
|
* 日期范围参数
|
|
*/
|
|
params?: any;
|
|
}
|
|
|