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