12 lines
293 B
C#
12 lines
293 B
C#
|
|
namespace YY.Admin.Core
|
|
{
|
|
/// <summary>
|
|
/// 忽略更新种子列特性(标记在实体属性)
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = true)]
|
|
public class IgnoreUpdateSeedColumnAttribute : Attribute
|
|
{
|
|
}
|
|
}
|