SqlSugar/Src/Asp.NetCore2/SqlSugar/Json2Sql/Interface/IJsonUpdateableProvider.cs
2022-06-20 13:40:36 +08:00

12 lines
261 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SqlSugar
{
public interface IJsonUpdateableProvider<T> : IJsonProvider<T>
{
// IJsonQueryableProvider<T> UpdateColumns(string tableName, string[] columns);
}
}