29 lines
584 B
29 lines
584 B
4 years ago
|
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; }
|
||
|
}
|
||
|
}
|