Newer
Older
xc-business-system / src / views / resource / file / noveltySearch / novelty-interface.ts
export interface IListQuery {
  formNo: string
  groupCode: string
  noveltyDateStart: string
  noveltyDateEnd: string
  noveltyResult: string
  formId: string
  approvalStatus: string
  offset: number
  limit: number
  sort?: string
  order?: string
}

export interface IFileFilterQuery {
  fileNo: string // 文件编号
  fileName: string // 文件名
  professionalGroup: string // 专业组(字典值)
  offset: number
  limit: number
}

export interface INoveltyLog {
  id: string
  fileId: string
  fileNo: string
  fileName: string
  noveltyResult: string
  noveltyResultName?: string
}

export interface IMethodNoveltySearch {
  id: string
  formNo: string
  formName: string
  labCode: string
  labCodeName?: string
  groupCode: string
  groupCodeName?: string
  noveltyDate: string
  noveltyResult: string
  noveltyWay: string
  approvalStatus?: string
  approvalStatusName?: string
  processId?: string
  taskId?: string
  remark?: string
  createUserId: string
  createUserName?: string
  createTime?: string
  decisionItem?: number
  logList: Array<INoveltyLog>
  logListCopy?: any
}