mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-02-12 03:10:57 +08:00
20 lines
466 B
C#
20 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FreeSql.DataAnnotations
|
|
{
|
|
/// <summary>
|
|
/// TDengine 超级表-子表
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class TDengineSubTableAttribute : TableAttribute
|
|
{
|
|
/// <summary>
|
|
/// 超表名称
|
|
/// </summary>
|
|
public string SuperTableName { get; set; }
|
|
}
|
|
} |