import { Base, Id } from '../BaseEntity'; import { ContactChannel } from './ContactChannel'; export declare class NotificationContact extends Base { name: string; tenantId: Id; channels: ContactChannel[]; constructor(data?: Partial); } export declare class NotificationContactGroup extends Base { name: string; tenantId: Id; desc: string; /** 所属模块 */ moduleName: string; /** 是否为只读 */ builtin: boolean; constructor(data?: Partial); }