- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Ant.Entity
- {
- [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
- public class NotAutoIncrementAttribute : Attribute
- {
- }
- }
|