cmc-web/webs/cos-web/src/models/service.d.ts

21 lines
388 B
TypeScript
Raw Normal View History

2024-08-20 12:11:31 +00:00
export interface IService {
2024-08-21 01:17:14 +00:00
id?: number
code?: string
name?: string
status?: string
iconId?: number
catalogId?: number
catalogIds?: any
checked?: boolean
billable?: boolean
billPolicy?: string
basicPrice?: string
vendorType?: string
discount?: number
templateId?: number | string
templateName?: string
icon?: string
isPublic?: boolean
2024-08-20 12:11:31 +00:00
flowList?: any
}