using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.PluginServiceInterface { public interface IAutoGenerateDBManager { List listSetups { get; set; } } /// /// 自动执行接口 /// public interface IAutoGenerateDB { /// /// 执行顺序 /// int ExeSequence { get; } /// /// 运行参数 /// object Parameter { get; set; } /// /// 执行方法 /// /// object ExeMethod(); /// /// 检查参数 /// /// bool CheckParameter(); } }