mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-05-04 16:12:50 +08:00
18 lines
344 B
C#
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; }
|
|
}
|
|
}
|