TbAipFileJobLog.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using Microsoft.EntityFrameworkCore.Metadata;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.ComponentModel.DataAnnotations.Schema;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace AipGateway.API.Domain.Entities
  10. {
  11. [Table("TB_AIP_FILE_JOB_LOG")]
  12. public class TbAipFileJobLog
  13. {
  14. [Key]
  15. //[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
  16. public int ApiId { get; set; }
  17. public string FileId { get; set; } = string.Empty;
  18. public string FileName { get; set; } = string.Empty;
  19. public string? FileExt { get; set; }
  20. public string? FileOwner { get; set; }
  21. public string? FileLabelGuid { get; set; }
  22. public string? FileProtectionGuid { get; set; }
  23. public Int64? FileSize { get; set; }
  24. public string? NewFileName { get; set; }
  25. public string? NewFileExt { get; set; }
  26. public string? NewFileOwner { get; set; }
  27. public string? NewFileLabelGuid { get; set; }
  28. public string? NewFileProtectionGuid { get; set; }
  29. public Int64? NewFileSize { get; set; }
  30. public string? ApiGuid { get; set; }
  31. public string? JobOwner { get; set; }
  32. public string? ServerIpAddr { get; set; }
  33. public string? ApiKey { get; set; }
  34. public string? DecryptKey { get; set; }
  35. public int JobResult { get; set; }
  36. public int JobTime { get; set; }
  37. public string? JobMessage { get; set; }
  38. }
  39. }