import { IPSModelObject } from '../ipsmodel-object'; /** * * @export * @interface IPSSearchDE */ export interface IPSSearchDE extends IPSModelObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 实体标记 * @type {string} */ dETag: string; /** * 实体标记2 * @type {string} */ dETag2: string; /** * 作为NoSQL存储 * @type {boolean} */ noSQLStorage: boolean; }