AipApiCallLog.cs 558 B

12345678910111213141516171819
  1. using AutoMapper;
  2. using AipGateway.API.Domain.Entities;
  3. namespace AipGateway.API.Domain.Models
  4. {
  5. public class AipApiCallLog
  6. {
  7. public Int64 Id { get; set; }
  8. public DateTime LogDate { get; set; }
  9. public short ApiId { get; set; }
  10. public string ApiGuid { get; set; }
  11. public DateTime? StartedAt { get; set; }
  12. public DateTime? CompletedAt { get; set; }
  13. public string? CallIpAddr { get; set; }
  14. public int? CallResult { get; set; }
  15. public string? CallMessage { get; set; }
  16. }
  17. }