import { IPSModelObject } from '../../ipsmodel-object'; import { IPSDEOPPriv } from '../priv/ipsdeoppriv'; /** * * 子接口类型识别属性[] * @export * @interface IPSDEMainStateOPPriv */ export interface IPSDEMainStateOPPriv extends IPSModelObject { /** * 实体操作标识 * * @type {IPSDEOPPriv} */ getPSDEOPPriv(): IPSDEOPPriv | null; /** * 实体操作标识 * * @type {IPSDEOPPriv} */ get psDEOPPriv(): IPSDEOPPriv | null; /** * 实体操作标识(必须存在) * * @type {IPSDEOPPriv} */ getPSDEOPPrivMust(): IPSDEOPPriv; }