You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.2 KiB
54 lines
1.2 KiB
4 years ago
|
using System;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace Common.Data
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 功能:请求数据连接的用户信息
|
||
|
/// 作者:王昊昇
|
||
|
/// 时间:2012.2.8
|
||
|
/// </summary>
|
||
|
public class ConnectionUser
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 项目编号
|
||
|
/// </summary>
|
||
|
public string ProjectID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 应用编号
|
||
|
/// </summary>
|
||
|
public string ApplicationID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 服务编号
|
||
|
/// </summary>
|
||
|
public string ServiceID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 用户编号
|
||
|
/// </summary>
|
||
|
public string UserID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据处理类型
|
||
|
/// </summary>
|
||
|
public CommandType CommandType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 事务处理编号
|
||
|
/// </summary>
|
||
|
public string TransID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 请求时间
|
||
|
/// </summary>
|
||
|
public DateTime RequestTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库应用编号
|
||
|
/// </summary>
|
||
|
public string DatabaseID { get; set; }
|
||
|
}
|
||
|
}
|