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;
}
}
}

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace FreeSql.Provider.QuestDb.Subtable
{
public enum SubtableType
{
Year = 1,
Month = 2,
Day = 3,
Hour = 4,
Second = 5,
Minute = 6,
Millisecond = 7,
Weekday = 8,
Quarter = 9
}
}