import { IPSModelObject } from '../ipsmodel-object'; /** * * @export * @interface IPSBDColSet */ export interface IPSBDColSet extends IPSModelObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 逻辑名称 * @type {string} */ logicName: string; /** * 默认列族 * @type {boolean} */ default: boolean; }