import { IPSModelObject } from '../ipsmodel-object'; /** * * @export * @interface IPSBDTableDE */ export interface IPSBDTableDE extends IPSModelObject { /** * 大数据表实体类型 * @description 值模式 [大数据表实体类型] {1:默认实体、 2:关系主实体、 3:关系从实体、 0:附属实体 } * @type {( number | 1 | 2 | 3 | 0)} */ bDTableDEType: number | 1 | 2 | 3 | 0; /** * 行键值格式化 * @type {string} */ rowKeyFormat: string; /** * 行键值参数 * @type {string} */ rowKeyParams: string; }