import { ConstraintType } from './ConstraintType'; import { Resource } from './Resource'; /** * 外键约束关系 * @author wangjiegj */ /** * 外键约束关系 */ export declare abstract class Constraint { /** * 约束内码 */ ID: string; /** * 数据模型ID */ DataModelID: string; /** * 约束类型 */ ConstraintType: ConstraintType; /** * 约束资源 */ Resource: Resource; }