using System.Threading.Tasks; namespace SqlSugar { public interface IParameterInsertable { int ExecuteCommand(); Task ExecuteCommandAsync(); } }