import { IPSDataEntity } from '../dataentity/ipsdata-entity'; import { IPSDEWF } from '../dataentity/wf/ipsdewf'; /** * * 子接口类型识别属性[] * @export * @interface IPSWFDE */ export interface IPSWFDE extends IPSDEWF { /** * 实体对象 * * @type {IPSDataEntity} */ getPSDataEntity(): IPSDataEntity | null; /** * 实体对象 * * @type {IPSDataEntity} */ get psDataEntity(): IPSDataEntity | null; /** * 实体对象(必须存在) * * @type {IPSDataEntity} */ getPSDataEntityMust(): IPSDataEntity; }