/** * 枚举:约束类型 * @author wangjiegj */ /** * 枚举:约束类型 */ declare enum ConstraintType { /** * 唯一 */ Unique = 2, /** * 外键 */ ForeignKey = 4 } export { ConstraintType };