cmc-web/webs/cop-web/src/models/tenant.d.ts

13 lines
240 B
TypeScript
Raw Normal View History

2024-08-20 12:11:31 +00:00
export interface ITenant {
id?: number,
account: string,
name: string,
status: string,
discount: number,
groupCode: string,
password: string,
remark: string,
departId: number | undefined,
departIds: number[] | string,
}