You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
424 B
18 lines
424 B
import type { R } from '/#/axios'; |
|
import { CommonEntity, Page } from '/@/api/common/data/entity'; |
|
|
|
export type OfficeParams = Office & Page; |
|
|
|
export interface Office extends CommonEntity { |
|
id: string; |
|
name: string; |
|
orgType: string; |
|
orgId: string; |
|
orgName: string; |
|
manageName: string; |
|
managePhone: string; |
|
detailAddress: string; |
|
status: string; |
|
} |
|
|
|
export type OfficeResult = R<Office[]>;
|
|
|