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 SqlParam { public SqlParam() { } /// /// sql文本 /// public string StrSql { get; set; } /// /// sql参数 /// public SqlParameter[] Parameters { get; set; } } }