16 lines
279 B
C#
16 lines
279 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SqlSugar
|
|||
|
{
|
|||
|
|
|||
|
public interface IJsonProvider<T>
|
|||
|
{
|
|||
|
List<SqlObjectResult> ToSqlList();
|
|||
|
SqlObjectResult ToSql();
|
|||
|
List<string> ToSqlString();
|
|||
|
T ToResult();
|
|||
|
}
|
|||
|
}
|