// 列表查询参数接口 export interface IListQuery { fileNo: string // 文件编号 fileName: string // 文件名 fileDistributeNo: string // 文件发放号 fileType: string // 文件类别(字典值) history: string // 历史文件(1历史文件0体系文件) offset: number limit: number sort?: string order?: string } export interface IDictType { name: string id: string value: string } export interface IFileInfo { id: string fileNo: string fileName: string fileDistributeNo: string fileType: string fileTypeName: string history: string versionNo: string effectiveDate: string createUserId?: string createUserName?: string createTime?: string changeFormId?: string remark?: string file: string }