Files
qhmes/yy-admin-master/YY.Admin.Core/Attribute/IgnoreUpdateSeedColumnAttribute.cs

12 lines
293 B
C#

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