using System; namespace XYY.Common.Standard.Attributes { [AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)] public class NotIdentityAttribute : Attribute { /// /// ID不自增 /// public NotIdentityAttribute() { } } }