mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-19 22:49:35 +08:00
10 lines
184 B
C#
10 lines
184 B
C#
![]() |
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SqlSugar
|
|||
|
{
|
|||
|
public interface IParameterInsertable<T>
|
|||
|
{
|
|||
|
int ExecuteCommand();
|
|||
|
Task<int> ExecuteCommandAsync();
|
|||
|
}
|
|||
|
}
|