Files
FreeSql/FreeSql/DataAnnotations/Special/OraclePrimaryKeyNameAttribute.cs
2019-08-02 10:49:07 +08:00

18 lines
344 B
C#

using System;
namespace FreeSql.DataAnnotations
{
public class OraclePrimaryKeyNameAttribute : Attribute
{
public OraclePrimaryKeyNameAttribute(string name)
{
this.Name = name;
}
/// <summary>
/// 主键名
/// </summary>
public string Name { get; set; }
}
}