using System;
using System.Collections.Generic;
using System.Text;
namespace ReZero.SuperAPI
{
public enum WhereRelation
{
///
/// And:并且-带OR参数NULL
///
And,
///
/// And all:并且
///
AndAll,
///
/// Or:或者-带OR参数NULL
///
Or,
///
/// OrAll:或者
///
OrAll,
///
/// Custom:自定义-带OR参数NULL
///
Custom,
///
/// CustomAll:自定义
///
CustomAll
}
}