Newer
Older
xc-business-system / src / views / resource / common / common-interface.ts
tanyue on 14 Oct 2023 404 bytes 20231014 易耗物资供方评价表
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
}