using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
namespace OpenAuth.Repository.Domain
{
///
///外部数据源
///
[Table("ExternalDataSource")]
public class ExternalDataSource : StringEntity
{
public ExternalDataSource()
{
this.Createtime = DateTime.Now;
this.Createusername = "";
this.Createuserid = "";
this.Updateuserid = "";
this.Updateusername = "";
this.Testsuccess = false;
this.Updatetime = DateTime.Now;
this.Enabled = false;
this.Connectionstring = "";
this.Description = "";
this.Password = "";
this.Username = "";
this.Port = null;
this.Server = "";
this.Databasename = "";
this.Dbtype = 0;
this.Name = "";
}
///
///创建时间
///
[Description("创建时间")]
public DateTime Createtime { get; set; }
///
///创建用户名
///
[Description("创建用户名")]
public string Createusername { get; set; }
///
///创建用户ID
///
[Description("创建用户ID")]
public string Createuserid { get; set; }
///
///更新用户ID
///
[Description("更新用户ID")]
public string Updateuserid { get; set; }
///
///更新用户名
///
[Description("更新用户名")]
public string Updateusername { get; set; }
///
///是否测试成功
///
[Description("是否测试成功")]
public bool? Testsuccess { get; set; }
///
///最后测试时间
///
[Description("最后测试时间")]
public DateTime? Updatetime { get; set; }
///
///是否启用
///
[Description("是否启用")]
public bool Enabled { get; set; }
///
///连接字符串
///
[Description("连接字符串")]
public string Connectionstring { get; set; }
///
///描述
///
[Description("描述")]
public string Description { get; set; }
///
///密码
///
[Description("密码")]
public string Password { get; set; }
///
///用户名
///
[Description("用户名")]
public string Username { get; set; }
///
///端口
///
[Description("端口")]
public int? Port { get; set; }
///
///服务器地址
///
[Description("服务器地址")]
public string Server { get; set; }
///
///数据库名称
///
[Description("数据库名称")]
public string Databasename { get; set; }
///
///数据库类型
///
[Description("数据库类型")]
public int Dbtype { get; set; }
///
///数据源名称
///
[Description("数据源名称")]
public string Name { get; set; }
}
}