using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RDH.Data.BLL { /// /// 表示表连接类型的枚举 /// public enum TableJoinTypes { Inner, Left, Right } }