| | |
| | | public async Task AddInterfaceLogAsync(AddAccessInterfaceLogInput input) |
| | | { |
| | | AccessInterfaceLog log = new(); |
| | | log.Id=input.Id; |
| | | |
| | | log.WorkPieceID = input.WorkPieceID; |
| | | log.WorkingProcedureCurrent = input.WorkingProcedureCurrent; |
| | | |
| | | log.Id = input.Id; |
| | | log.ParaJSON = input.JsonString; |
| | | log.Action = input.Action; |
| | | log.IPAddress = input.IpAddress; |
| | |
| | | // } |
| | | //} |
| | | //log.Keys = string.Join(", ", keys); |
| | | if(input.Result.GetType().Name.Equals("String")) |
| | | if (input.Result.GetType().Name.Equals("String")) |
| | | { |
| | | log.ResultJson = input.Result.ToString(); |
| | | |