using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation { /// /// sql 条件前缀 /// public enum eSqlConditionPrefix { /// /// 且 /// And = 0, /// /// 或 /// Or = 1 } }