12 lines
262 B
C#
12 lines
262 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SqlSugar
|
|||
|
{
|
|||
|
public interface IJsonDeleteableProvider<T> : IJsonProvider<T>
|
|||
|
{
|
|||
|
// IJsonQueryableProvider<T> UpdateColumns(string tableName, string[] columns);
|
|||
|
}
|
|||
|
}
|