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

21 lines
397 B
TypeScript
Raw Normal View History

2024-08-20 12:11:31 +00:00
export interface IService {
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,
flowList?: any
}