using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIP_Models
{
///
/// 存储过程执行返回类
///
public class ProcResultModel
{
///
/// SqlCommand 相关联的参数的集合
///
public SqlParameterCollection sqlParameterCollection { get; set; }
///
/// 执行结果(-1 失败,1成功)
///
public int execResult { get; set; }
///
/// 异常信息
///
public string errMsg { get; set; }
}
}