/** * 联接方式 * @author wangjiegj */ /** * 联接方式 */ declare enum JoinMode { /** * 内联接 */ InnerJoin = 0, /** * 外联接 */ OuterJoin = 1 } export { JoinMode };