import { JsonConvertableImpl } from '@edp-bif/common-api'; import { BifMetadataType } from './BifMetadataType'; import { IShowEntity } from './IShowEntity'; export declare abstract class AbstractShowEntity extends JsonConvertableImpl implements IShowEntity { id: string; code: string; name: string; upBillVoName: string; downBillVoName: string; bifMetadataType: BifMetadataType; lastModifiedTime: Date; parentId: string; sysInit: boolean; originId: string; rootId: string; protected ResetBeforeLoadFrom(): void; ConvertToJsonObject(): {}; LoadFromJsonObject(obj: {}): void; }