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.
45 lines
964 B
45 lines
964 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QM.Exchange.Adapters.MiddleDB
|
|
{
|
|
public class MiddleDBMqData
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 接口表
|
|
/// </summary>
|
|
public string IOTable { get; set; }
|
|
|
|
/// <summary>
|
|
/// 消息ID
|
|
/// </summary>
|
|
public string MsgID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据内容
|
|
/// </summary>
|
|
public string DataContent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 写入时间
|
|
/// </summary>
|
|
public DateTime W_DT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 读取时间
|
|
/// </summary>
|
|
public DateTime R_DT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 读取标志
|
|
/// </summary>
|
|
public string R_FLAG { get; set; }
|
|
}
|
|
}
|
|
|