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 }