123456789101112131415161718192021 |
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace Aip.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; }
- }
|