using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMFrameWork.Data.Attributes;
using System.Runtime.Serialization;
using System.Data;
namespace QMAPP.Entity.QueryTL.Entity
{
///
/// 支持交互参数设置
/// 创建者:
/// 创建日期:
///
[DBTable(TableName = "T_QM_PARAMSET")]
public class T_QM_PARAMSET : BaseEntity
{
///
/// 主键
///
[DBColumn(ColumnName = "ID", DataType = DbType.String,IsKey = true)]
public string ID
{
get;
set;
}
///
/// 超时时间1
///
[DBColumn(ColumnName = "OVERTIME1", DataType = DbType.Int32)]
public Int32 OverTime1
{
get;
set;
}
///
/// 超时时间2
///
[DBColumn(ColumnName = "OVERTIME2", DataType = DbType.Int32)]
public Int32 OverTime2
{
get;
set;
}
///
/// SMTP服务器
///
[DBColumn(ColumnName = "SMTPSERVER", DataType = DbType.String,IsNull=true)]
public string SmtpServer
{
get;
set;
}
///
/// 用户名
///
[DBColumn(ColumnName = "SMTPUSER", DataType = DbType.String, IsNull = true)]
public string SmtpUser
{
get;
set;
}
///
///密码
///
[DBColumn(ColumnName = "SMTPPASSWORD", DataType = DbType.String, IsNull = true)]
public string SmtpPassword
{
get;
set;
}
///
/// 邮件服务器
///
[DBColumn(ColumnName = "DOMAIN", DataType = DbType.String, IsNull = true)]
public string DoMain
{
get;
set;
}
///
/// 发件人邮箱
///
[DBColumn(ColumnName = "FROMUSERMAIL", DataType = DbType.String, IsNull = true)]
public string FromUserMail
{
get;
set;
}
}
}