Synchronization code

This commit is contained in:
sunkaixuan 2022-08-01 16:51:08 +08:00
parent 38875570b7
commit 9f6165332d

View File

@ -25,4 +25,14 @@ namespace SqlSugar
}
}
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
public class TimeDbSplitFieldAttribute : Attribute
{
public DateType? DateType { get; set; }
public TimeDbSplitFieldAttribute(DateType type)
{
DateType = type;
}
}
}