123456789101112131415161718192021222324252627282930313233 |
- using Azure;
- 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 AipGateway.Data.Entities
- {
- [Table("TB_AIP_CONFIG")]
- public class TbAipConfig
- {
- [Key]
- public required int Id { get; set; }
- public required int AipServerId { get; set; }
- [StringLength(1023)]
- public required string ConfigKey { get; set; }
- public required string ConfigValue { get; set; }
-
- public required DateTime CreatedAt { get; set; }
- public override string ToString()
- {
- return "TbAipConfig{ Id: " + Id + ", AipServerId: " + AipServerId + ", ConfigKey: " + ConfigKey + ", CreatedAt: " + CreatedAt + "}";
- }
- }
- }
|