using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 存储过程使用的参数实体 /// [Serializable] public class SqlParamForProcedure { public SqlParamForProcedure() { } /// /// 存储过程名 /// public string storedProcName { get; set; } /// /// sql参数 /// public SqlParameter[] Parameters { get; set; } } }