TDengine 增加Select相关功能

This commit is contained in:
d4ilys
2024-09-10 14:02:57 +08:00
parent 0e81ee0a35
commit 962a5b9ba7
9 changed files with 7136 additions and 6491 deletions

View File

@@ -0,0 +1,20 @@
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 SubTableAttribute : TableAttribute
{
/// <summary>
/// 超表名称
/// </summary>
public string SuperTableName { get; set; }
}
}

View File

@@ -10,7 +10,11 @@ namespace FreeSql.DataAnnotations
/// TDengine 超级表
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class STableAttribute : Attribute
public class SuperTableAttribute : TableAttribute
{
/// <summary>
/// 超表名称
/// </summary>
public string STableName { get; set; }
}
}