GatewayLog.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using Newtonsoft.Json.Linq;
  2. using System.Security.Policy;
  3. namespace AipDatabase.API.Models
  4. {
  5. public class GatewayLog
  6. {
  7. public Int64 rowNum { get; set; }
  8. public Int64 id { get; set; }
  9. public string logDate { get; set; }
  10. public int apiId { get; set; }
  11. public string apiName { get; set; }
  12. public string apiDesc { get; set; }
  13. public string fileId { get; set; }
  14. public string fileOwner { get; set; }
  15. public string fileName { get; set; }
  16. public string fileLabelGuid { get; set; }
  17. public string labelDesc { get; set; }
  18. public Int64 fileSize { get; set; }
  19. public string newFileName { get; set; }
  20. public string newFileOwner { get; set; }
  21. public string newFileLabelGuid { get; set; }
  22. public string newLabelDesc { get; set; }
  23. public Int64 newFileSize { get; set; }
  24. public string jobOwner { get; set; }
  25. public int jobResult { get; set; }
  26. public int jobTime { get; set; }
  27. public string jobMessage { get; set; }
  28. public string serverIpAddr { get; set; }
  29. public string apiGuid { get; set; }
  30. public string apiKey { get; set; }
  31. public GatewayLog(long rowNum, long id, string logDate, int apiId, string apiName, string apiDesc, string fileId, string fileOwner, string fileName,
  32. string fileLabelGuid, string labelDesc, long fileSize, string newFileName, string newFileOwner, string newFileLabelGuid, string newLabelDesc, long newFileSize, string jobOwner, int jobResult, int jobTime, string jobMessage, string serverIpAddr, string apiGuid, string apiKey)
  33. {
  34. this.rowNum = rowNum;
  35. this.id = id;
  36. this.logDate = logDate;
  37. this.apiId = apiId;
  38. this.apiName = apiName;
  39. this.apiDesc = apiDesc;
  40. this.fileId = fileId;
  41. this.fileOwner = fileOwner;
  42. this.fileName = fileName;
  43. this.fileLabelGuid = fileLabelGuid;
  44. this.labelDesc = labelDesc;
  45. this.fileSize = fileSize;
  46. this.newFileName = newFileName;
  47. this.newFileOwner = newFileOwner;
  48. this.newFileLabelGuid = newFileLabelGuid;
  49. this.newLabelDesc = newLabelDesc;
  50. this.newFileSize = newFileSize;
  51. this.jobOwner = jobOwner;
  52. this.jobResult = jobResult;
  53. this.jobTime = jobTime;
  54. this.jobMessage = jobMessage;
  55. this.serverIpAddr = serverIpAddr;
  56. this.apiGuid = apiGuid;
  57. this.apiKey = apiKey;
  58. }
  59. }
  60. }