mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-02-23 00:30:56 +08:00
22 lines
457 B
C#
22 lines
457 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FreeSql.TDengine.Describes
|
|
{
|
|
internal class SuperTableDescribe
|
|
{
|
|
/// <summary>
|
|
/// 超级表Type
|
|
/// </summary>
|
|
public Type SuperTableType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 超级表名称
|
|
/// </summary>
|
|
public string SuperTableName { get; set; }
|
|
|
|
}
|
|
} |