sunkaixuan
8 years ago
5 changed files with 61 additions and 6 deletions
@ -0,0 +1,14 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
|
|||
namespace SqlSugar |
|||
{ |
|||
public interface IFilter |
|||
{ |
|||
IFilter Add(SqlFilterItem filter); |
|||
void Remove(string filterName); |
|||
List<SqlFilterItem> GeFilterList { get; } |
|||
} |
|||
} |
Loading…
Reference in new issue