import { ConstraintType } from './ConstraintType'; import { GSPCommonElement } from '../GSPCommonElement'; /** * 唯一约束 * @author wangjiegj */ /** * 唯一约束 */ export declare class GSPUniqueConstraint { /** * 唯一标志 */ ID: string; /** * 编号 */ Code: string; /** * 名称 */ Name: string; /** * 约束类型 */ Type: ConstraintType; /** * 约束消息 */ ConstraintMessage: string; /** * 约束包含的字段列表 */ ElementList: GSPCommonElement[]; }