import { IPSSysBISchemeObject } from './ipssys-bischeme-object'; /** * * @export * @interface IPSBIDimension */ export interface IPSBIDimension extends IPSSysBISchemeObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 维度标记 * @type {string} */ dimensionTag: string; /** * 维度标记2 * @type {string} */ dimensionTag2: string; }