1234567891011121314151617181920 |
- using FreeSql.DataAnnotations;
- namespace Admin.Core.Model
- {
-
-
-
- public class EntityVersion<TKey> : Entity<TKey>, IEntityVersion
- {
-
-
-
- [Column(Position = -1, IsVersion = true)]
- public long Version { get; set; }
- }
- public class EntityVersion : EntityVersion<long>
- {
- }
- }
|