12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Core.Entities.Base
- {
- public class FullAuditEntity:AuditEntity, IFullAuditEntity
- {
- [Column(Order = 7)]
- public bool IsDeleted { get; set; }
- [MaxLength(450)]
- [Column(Order = 8)]
- public string? DeleteUserId { get; set; }
- }
- public class FullAuditEntity<TKey> : AuditEntity<TKey>, IFullAuditEntity<TKey> where TKey : Type
- {
- [Column(Order = 7)]
- public bool IsDeleted { get; set; }
- [MaxLength(450)]
- [Column(Order = 8)]
- public string? DeleteUserId { get; set; }
- }
- }
|