Newer
Older
xc-business-system / src / views / resource / file / grantNotice / notice-interface.ts
tanyue on 25 Sep 2023 860 bytes 20230925 文件发放通知单功能
export interface IListQuery {
  formNo: string
  formId: string
  approvalStatus: string
  offset: number
  limit: number
  sort?: string
  order?: string
}

export interface IFileFilterQuery {
  fileNo: string
  fileName: string
  formId: string
  approvalStatus: string
  offset: number
  limit: number
}

export interface IFileNoticeInfo {
  id: string
  fileApprovalId: string
  fileNo: string
  fileName: string
  changeContent: string
}

export interface IFileGrandNotice {
  id: string
  formNo: string
  formName: string
  labCode: string
  labCodeName?: string
  groupCode: string
  groupCodeName?: string
  approvalStatus?: string
  approvalStatusName?: string
  processId?: string
  taskId?: string
  remark?: string
  createUserId: string
  createUserName?: string
  createTime?: string
  decisionItem?: number
  fileList: Array<IFileNoticeInfo>
}