using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Aip.Service.Entities; [Table("TB_AIP_PROTECTION")] public class TbAipProtection { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int ProtectionId { get; set; } [StringLength(255)] public string ProtectionGuid { get; set; } = string.Empty; [StringLength(255)] public string ProtectionName { get; set; } = string.Empty; [DatabaseGenerated(DatabaseGeneratedOption.Computed)] public DateTime CreatedAt { get; set; } = DateTime.Now; public bool UseYn { get; set; } [StringLength(512)] public string? ProtectionDesc { get; set; } public DateTime? DeletedAt { get; set; } }