Newer
Older
jh-business-system / src / views / resource / common / common-interface.ts
dutingting 28 days ago 588 bytes Initial commit: 项目初始化
export interface ICustomerTree {
  name: string
  deptId: string
  children?: ICustomerTree[]
  id: string
}

export interface ICustomerFilter {
  customerName: string
  approvalStatus: string
  formId: string
  offset: number
  limit: number
}

export interface ISupplierFilter {
  supplierName: string
  supplierType: string
  approvalStatus: string
  formId: string
  offset: number
  limit: number
}

export interface IConsumableApplyFilter {
  applyNo: string
  createUserName: string
  createDept: string
  approvalStatus: string
  formId: string
  offset: number
  limit: number
}