/** * 约束类型 * @author wangjiegj */ /** * 约束类型 */ declare enum ConstraintType { /** * 唯一约束 */ Unique = 0 } export { ConstraintType };