import { IEntity } from './interface-entity'; /** * 实体抽象类 */ export declare abstract class EntityBase implements IEntity { Id: string; }