Add QuestDb

This commit is contained in:
dailyccc
2023-02-21 09:36:41 +08:00
parent fbd062ab2d
commit 0ef87ad028
20 changed files with 4894 additions and 0 deletions

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace FreeSql.Provider.QuestDb.Subtable
{
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
public class AutoSubtableAttribute : Attribute
{
public SubtableType? SubtableType
{
get; set;
}
public AutoSubtableAttribute(SubtableType type)
{
SubtableType = type;
}
}
}