using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Aip.Api.Service.Entities; [Table("TB_AIP_SERVER")] public class TbAipServer { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public required int AipServerId { get; set; } [StringLength(255)] public required string AipServerName { get; set; } public string? IpAddr { get; set; } public int? Port { get; set; } public required DateTime CreatedAt { get; set; } }