mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
12 lines
261 B
C#
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);
|
|
}
|
|
}
|