/*
* 作者:吴隆健
* 日期: 2019-04-23
* 时间: 13:21
*
*/
using System;
using System.Data;
namespace MrWu.DB {
///
/// sql参数 T是数据类型
///
public interface ISqlAloneParameter {
///
/// 参数名称
///
string paramname {
get;
}
///
/// 参数值
///
object paramvalue {
get; set;
}
///
/// 参数类型
///
T type {
get;
}
///
/// 值的长度
///
int valueLength {
get;
}
///
/// Direction
///
ParameterDirection Direction { get; set; }
}
}