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

13 lines
230 B
TypeScript
Raw Normal View History

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