mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-26 12:42:50 +08:00
17 lines
396 B
C#
17 lines
396 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FreeSql.DataAnnotations
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class ClickHousePartitionAttribute : Attribute
|
|
{
|
|
public ClickHousePartitionAttribute(string format = "toYYYYMM({0})")
|
|
{
|
|
Format = format;
|
|
}
|
|
|
|
public string Format { get; set; }
|
|
}
|
|
} |