1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using Newtonsoft.Json.Linq;
- using System.Security.Policy;
- namespace AipDatabase.API.Models
- {
- public class GatewayLog
- {
- public Int64 rowNum { get; set; }
- public Int64 id { get; set; }
- public string logDate { get; set; }
- public int apiId { get; set; }
- public string apiName { get; set; }
- public string apiDesc { get; set; }
- public string fileId { get; set; }
- public string fileOwner { get; set; }
- public string fileName { get; set; }
- public string fileLabelGuid { get; set; }
- public string labelDesc { get; set; }
- public Int64 fileSize { get; set; }
- public string newFileName { get; set; }
- public string newFileOwner { get; set; }
- public string newFileLabelGuid { get; set; }
- public string newLabelDesc { get; set; }
- public Int64 newFileSize { get; set; }
- public string jobOwner { get; set; }
- public int jobResult { get; set; }
- public int jobTime { get; set; }
- public string jobMessage { get; set; }
- public string serverIpAddr { get; set; }
- public string apiGuid { get; set; }
- public string apiKey { get; set; }
-
- public GatewayLog(long rowNum, long id, string logDate, int apiId, string apiName, string apiDesc, string fileId, string fileOwner, string fileName,
- 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)
- {
- this.rowNum = rowNum;
- this.id = id;
- this.logDate = logDate;
- this.apiId = apiId;
- this.apiName = apiName;
- this.apiDesc = apiDesc;
- this.fileId = fileId;
- this.fileOwner = fileOwner;
- this.fileName = fileName;
- this.fileLabelGuid = fileLabelGuid;
- this.labelDesc = labelDesc;
- this.fileSize = fileSize;
- this.newFileName = newFileName;
- this.newFileOwner = newFileOwner;
- this.newFileLabelGuid = newFileLabelGuid;
- this.newLabelDesc = newLabelDesc;
- this.newFileSize = newFileSize;
- this.jobOwner = jobOwner;
- this.jobResult = jobResult;
- this.jobTime = jobTime;
- this.jobMessage = jobMessage;
- this.serverIpAddr = serverIpAddr;
- this.apiGuid = apiGuid;
- this.apiKey = apiKey;
- }
- }
- }
|