import { IPSModelObject } from '../ipsmodel-object'; import { IPSDataEntity } from '../dataentity/ipsdata-entity'; /** * * @export * @interface IPSEAIDE */ export interface IPSEAIDE extends IPSModelObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 映射实体标记 * @type {string} */ dETag: string; /** * 映射实体标记2 * @type {string} */ dETag2: string; /** * 实体 * * @type {IPSDataEntity} */ getPSDataEntity(): IPSDataEntity | null; /** * 实体 * * @type {IPSDataEntity} */ get psDataEntity(): IPSDataEntity | null; /** * 实体(必须存在) * * @type {IPSDataEntity} */ getPSDataEntityMust(): IPSDataEntity; }