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.
28 lines
584 B
28 lines
584 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QM.Exchange.Adapters.MiddleDB
|
|
{
|
|
/// <summary>
|
|
/// 接口表与主题关联关系
|
|
/// </summary>
|
|
public class IOTableAndTopic
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 接口表
|
|
/// </summary>
|
|
public string TableName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主题ID
|
|
/// </summary>
|
|
public string TopicID { get; set; }
|
|
}
|
|
}
|
|
|