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.Data.Entities
  10. {
  11. [Table("TB_AIP_FILE_JOB_LOG")]
  12. public class TbAipFileJobLog
  13. {
  14. [Key]
  15. public required Int64 Id { get; set; }
  16. public required DateTime LogDate { get; set; }
  17. public required string FileId { get; set; }
  18. public required string FileName { get; set; }
  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 required string JobType { get; set; }
  32. public string? JobOwner { get; set; }
  33. public string? ServerIpAddr { get; set; }
  34. public string? ApiKey { get; set; }
  35. public string? DecryptKey { get; set; }
  36. public required string JobResult { get; set; }
  37. public string? JobMessage { get; set; }
  38. }
  39. }