调整 OraclePrimaryKeyName 特性

This commit is contained in:
28810
2019-08-02 10:49:07 +08:00
parent 430618dcb7
commit 68ab673870

View File

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