NotIdentityAttribute.cs 341 B

123456789101112131415
  1. using System;
  2. namespace XYY.Common.Standard.Attributes
  3. {
  4. [AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
  5. public class NotIdentityAttribute : Attribute
  6. {
  7. /// <summary>
  8. /// ID不自增
  9. /// </summary>
  10. public NotIdentityAttribute()
  11. {
  12. }
  13. }
  14. }