1234567891011121314151617181920212223242526272829303132 |
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace Aip.Service.Entities;
- [Table("TB_AIP_FILE_JOB_LOG")]
- public class TbAipFileJobLog
- {
- [Key]
- public int ApiId { get; set; }
- public string FileId { get; set; } = string.Empty;
- public string FileName { get; set; } = string.Empty;
- public string? FileExt { get; set; }
- public string? FileOwner { get; set; }
- public string? FileLabelGuid { get; set; }
- public string? FileProtectionGuid { get; set; }
- public long? FileSize { get; set; }
- public string? NewFileName { get; set; }
- public string? NewFileExt { get; set; }
- public string? NewFileOwner { get; set; }
- public string? NewFileLabelGuid { get; set; }
- public string? NewFileProtectionGuid { get; set; }
- public long? NewFileSize { get; set; }
- public string? ApiGuid { get; set; }
- public string? JobOwner { get; set; }
- public string? ServerIpAddr { get; set; }
- public string? ApiKey { get; set; }
- public string? DecryptKey { get; set; }
- public int JobResult { get; set; }
- public int JobTime { get; set; }
- public string? JobMessage { get; set; }
- }
|