12345678910111213141516171819202122232425 |
- using System.Collections;
- namespace Aip.Service.Entities;
- public class LinkedDecryptKey
- {
- public int DecryptKeyId { get; set; }
- public string DecryptKey { get; set; } = string.Empty;
- public DateTime ExpiredAt { get; set; } = DateTime.Now;
- public int ServerId { get; set; }
- public string ServerIpAddr { get; set; } = string.Empty;
- public string ServerDesc { get; set; } = string.Empty;
- public int SystemId { get; set; }
- public string SystemName { get; set; } = string.Empty;
- public Hashtable serverMap = new Hashtable();
- }
|