diff --git a/24Hour/24Hour.csproj b/24Hour/24Hour.csproj index 79cf270..e88f844 100644 --- a/24Hour/24Hour.csproj +++ b/24Hour/24Hour.csproj @@ -8,8 +8,8 @@ True e485308c-2f05-470b-b0a4-68f1ec2b3412 Linux - 1.0.3.2 - 1.0.3.2 + 1.0.3.14 + 1.0.3.14 diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 214037a..aa24af0 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -1,6 +1,7 @@ using AutoMapper; using com.sun.org.apache.xalan.@internal.xsltc.runtime; using com.sun.tools.@internal.xjc.api; +using com.sun.xml.@internal.ws.developer; using Elight.Entity; using Elight.Entity.SystemModel; using Elight.Logic; @@ -8,17 +9,23 @@ using Elight.Utility; using Elight.Utility.Code; using Elight.Utility.Extensions; using Elight.Utility.logs; +using java.io; using java.util; +using javax.smartcardio; using javax.xml.crypto; using jdk.nashorn.@internal.ir; +using MathNet.Numerics.LinearAlgebra; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; +using NPOI.SS.Formula.Functions; using Quartz.Logging; using SqlSugar; using sun.security.x509; using System.Drawing.Printing; +using System.Runtime.InteropServices; using System.Security.AccessControl; using static com.sun.tools.@internal.xjc.reader.xmlschema.bindinfo.BIConversion; +using static javax.jws.soap.SOAPBinding; using static sun.font.LayoutPathImpl; using User = Elight.Utility.User; @@ -1488,7 +1495,7 @@ namespace _24Hour.Controllers.Common var Lawyerboldata = Lawyerbol.FirstOrDefault(); if (dto.Type == 1) { - if (Lawyerboldata.state ==4) + if (Lawyerboldata.state == 4) { result.IsSucceed = false; result.result = "预约已被取消"; @@ -2738,63 +2745,80 @@ namespace _24Hour.Controllers.Common #region 文件上传 /// - /// 文件上传--附件 - /// + /// 通用文件下载接口 + /// + /// /// + [HttpGet] + [Route("RequestDownloadFile")] + public IActionResult RequestDownloadFile(string filename) //[FromBody] dynamic Json + { + + if (System.IO.File.Exists(filename)) + { + filename = filename.Replace(@"\\", @"\"); + var data = System.IO.Path.Combine(Environment.CurrentDirectory, "wwwroot"); + if (filename.Contains(data) == false) + { + return BadRequest(); + } + var FileName = System.IO.Path.GetFileName(filename); + var FilePath = filename; + + return new FileStreamResult(new FileStream(FilePath, FileMode.Open), "application/octet-stream") { FileDownloadName = FileName }; + + } + else + { + return BadRequest(); + } + + } + + /// + /// 通用文件下载接口 /// - [HttpPost] - [Route("Upload_Files")] - public async Task Upload_Files(IFormFile file) + /// + /// + [HttpGet] + [Route("RequestDeleteFile")] + public Result RequestDeleteFile(string filename) //[FromBody] dynamic Json { - Result outParm = new Result(); - return await Task.Run(() => + if (System.IO.File.Exists(filename)) { - if (file.Length <= 0) + filename = filename.Replace(@"\\", @"\"); + var data = System.IO.Path.Combine(Environment.CurrentDirectory, "wwwroot", "temp"); + if (filename.Contains(data) == false) { - outParm.IsSucceed = false; - outParm.Message = "请上传文件!"; - return Json(outParm); + return Result.Error("操作失败" + "不可删除"); } + var FileName = System.IO.Path.GetFileName(filename); + var FilePath = filename; try { - var size = Request.Form.Files.Sum(f => f.Length); - IFormFile file = Request.Form.Files.FirstOrDefault(); - var fname = $@"{file.FileName}"; - var hzname = $"{Path.GetExtension(fname)}"; - var _path = $"/CaseFile/video/{DateTime.Now.ToString("yyyy-MM-dd")}"; - var dic = Path.Combine(Environment.CurrentDirectory, "wwwroot"); - if (!string.IsNullOrEmpty(_path)) - dic += _path; - if (!System.IO.Directory.Exists(dic)) - Directory.CreateDirectory(dic); - var filename = $"{DateTime.Now:yyyyMMddHHmmssfff}{Path.GetExtension(fname)}"; - var filepath = Path.Combine(_path, $"{filename}"); - var path = Path.Combine(dic, $"{filename}"); - using (var stream = new FileStream(path, FileMode.OpenOrCreate)) - { - file.CopyToAsync(stream).Wait(); - } - var __path = $"{_path}/{filename}"; - outParm.IsSucceed = true; - outParm.result = new { hzname = hzname, url = __path, tile = Path.GetFileNameWithoutExtension(file.FileName), size, DataPath = path, filePath = dic }; + System.IO.File.Delete(filename); } - catch (Exception e) + catch (Exception ex) { - outParm.IsSucceed = false; - outParm.Message = $"文件上传失败!{e.Message}"; + return Result.Error("操作失败" + ex.Message); } - return Json(outParm); - }); + + return Result.Success("操作成功"); + } + else + { + return Result.Error("操作失败" + "文件不存在"); + } } + private readonly string[] AllowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".xlsx", ".aks" }; /// /// 文件上传--附件 - /// /// /// + /// [HttpPost] - [Route("Upload_Files1")] - [AllowAnonymous] - public async Task Upload_Files1(IFormFile file) + [Route("Upload_Files")] + public async Task Upload_Files(IFormFile file) { Result outParm = new Result(); return await Task.Run(async () => @@ -2811,6 +2835,14 @@ namespace _24Hour.Controllers.Common IFormFile file = Request.Form.Files.FirstOrDefault(); var fname = $@"{file.FileName}"; var hzname = $"{Path.GetExtension(fname)}"; + + + if (AllowedExtensions.Contains(hzname.ToLower()) == false) + { + outParm.IsSucceed = false; + outParm.Message = "不被允许的文件格式!"; + return Json(outParm); + } var _path = Path.Combine("CaseFile", "card", DateTime.Now.ToString("yyyy-MM-dd")); var dic = Path.Combine(Environment.CurrentDirectory, "wwwroot", _path); @@ -2819,16 +2851,18 @@ namespace _24Hour.Controllers.Common var filename = $"{DateTime.Now:yyyyMMddHHmmssfff}{Path.GetExtension(fname)}"; var filepath = Path.Combine(_path, $"{filename}"); var path = Path.Combine(dic, $"{filename}"); - using (var stream = new FileStream(path, FileMode.OpenOrCreate)) + var __path = Path.Combine(_path, filename); + path = System.IO.Path.ChangeExtension(path, "aks"); + + using (var ms = new MemoryStream()) { - await file.CopyToAsync(stream); + await file.CopyToAsync(ms); + var Encryptiondata = Elight.Utility.Encrypt.DataEncryption.Encryption(ms.ToArray()); + await System.IO.File.WriteAllBytesAsync(path, Encryptiondata); } - // var __path = $"{_path}/{filename}"; - var __path = Path.Combine(_path, filename); + __path = System.IO.Path.ChangeExtension(__path, "aks"); var repath = "/" + __path.Replace(@"\", @"/"); - - outParm.IsSucceed = true; outParm.result = new { @@ -2848,6 +2882,93 @@ namespace _24Hour.Controllers.Common return Json(outParm); }); } + + + [HttpGet] + [Route("GetImageFile")] + public async Task GetImageFile(string file) + { + + Result result = new Result(); + var urlpath = file.Split('/'); + var path = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); + if (System.IO.File.Exists(path)) + { + var str = Elight.Utility.Encrypt.DataEncryption.Decryptiones(path); + result.result = new + { + BaseStr = str + }; + result.IsSucceed = true; + } + else + { + result.IsSucceed = false; + result.Message = "文件不存在"; + } + + return result; + } + [HttpPost] + [Route("GetImageFiles")] + public async Task GetImageFiles(List file) + { + try + { + var islinux = System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(OSPlatform.Linux); + //根据输入url获取base64值 + var getstr = (string s) => + { + var urlpath = s.Split('/'); + + var path = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); + if (System.IO.File.Exists(path)) + { + return Elight.Utility.Encrypt.DataEncryption.Decryptiones(path); + } + else + { + return ""; + } + }; + //根据输入url获取文件是否存在 + var getexist = (string s) => + { + + var urlpath = s.Split('/'); + var path = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); + return System.IO.File.Exists(path); + }; + var data = file.Select(x => new + { + Item = x, + IsExist = getexist(x), + BaseStr = getstr(x), + + }); + result.IsSucceed = true; + result.result = data; + } + catch + { + result.IsSucceed = true; + result.Message = "系统错误"; + } + return result; + } + /// + /// 文件上传--附件 + /// + /// + /// + [HttpPost] + [Route("Upload_Files1")] + [AllowAnonymous] + + public async Task Upload_Files1(IFormFile file) + { + return await Upload_Files(file); + } #endregion } } diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 609455b..07928f1 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -20,16 +20,19 @@ using javax.xml.crypto; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; +using Microsoft.Extensions.Logging; using Newtonsoft.Json; using NPOI.OpenXmlFormats.Spreadsheet; using NPOI.SS.Formula.Functions; using SqlSugar; using SqlSugar.Extensions; using System.Data; +using System.IO; using System.IO.Compression; using System.Linq; using System.Net.WebSockets; using System.Runtime.InteropServices; +using System.Runtime.Intrinsics.Arm; using System.Text; using static _24Hour.TwentySystemProxyClient; using static com.sun.tools.@internal.xjc.reader.xmlschema.bindinfo.BIConversion; @@ -196,107 +199,107 @@ namespace _24Hour.Controllers.Common int updated = 0, added = 0; var ext = Path.GetExtension(path).ToLower(); - if (ext == ".xlsx" || ext == ".xls") + var excelpath = System.IO.Path.ChangeExtension(path, ".xlsx"); + if (System.IO.File.Exists(path)) { - if (System.IO.File.Exists(path)) + + Elight.Utility.Encrypt.DataEncryption.Decryption(path, excelpath); + var reader = new ExcelReader(excelpath); + var dt = reader.ExcelToDataTable(); + if (dt != null) { - var reader = new ExcelReader(path); - var dt = reader.ExcelToDataTable(); - if (dt != null) + var lawyers = new List(); + foreach (DataRow dr in dt.Rows) + { + var cardid = dr.Field("证件编号"); + if (string.IsNullOrEmpty(cardid)) + { + continue; + } + lawyers.Add(new() + { + Id = Guid.NewGuid().ToString(), + name = dr.Field("姓名"), + sex = dr?.Field("性别")?.Contains('男') == true ? 0 : 1, + phone = dr.Field("手机号码"), + departmentName = dr.Field("执业机构"), + identitycardId = dr.Field("执业证号"), + cardId = dr.Field("证件编号"), + unitCode = _userdata.unitCode, + + createtime = DateTime.Now, + createuserId = _userdata.createuserId, + createusername = _userdata.name, + identity = "律师", + usertype = 1, + audit = 0, + + isdeactivate = 0, + IsDeleted = 0, + }); + } + var cardids = lawyers.Select(e => e.cardId).ToList(); + var lawyersInDb = await _db.Queryable().In(x => x.cardId, cardids).ToListAsync(); + if (lawyersInDb.Any()) { - var lawyers = new List(); - foreach (DataRow dr in dt.Rows) + var updatelist = new List(); + foreach (var item in lawyersInDb) { - var cardid = dr.Field("证件编号"); - if (string.IsNullOrEmpty(cardid)) + var lawyerinfo = lawyers.FirstOrDefault(x => x.cardId == item.cardId); + if (lawyerinfo == null) { continue; } - lawyers.Add(new() + if (item.name != lawyerinfo.name || + item.sex != lawyerinfo.sex || + item.phone != lawyerinfo.phone || + item.departmentName != lawyerinfo.departmentName || + item.cardId != lawyerinfo.cardId) { - Id = Guid.NewGuid().ToString(), - name = dr.Field("姓名"), - sex = dr?.Field("性别")?.Contains('男') == true ? 0 : 1, - phone = dr.Field("手机号码"), - departmentName = dr.Field("执业机构"), - identitycardId = dr.Field("执业证号"), - cardId = dr.Field("证件编号"), - unitCode = _userdata.unitCode, - - createtime = DateTime.Now, - createuserId = _userdata.createuserId, - createusername = _userdata.name, - identity = "律师", - usertype = 1, - audit = 0, - - isdeactivate = 0, - IsDeleted = 0, - }); - } - var cardids = lawyers.Select(e => e.cardId).ToList(); - var lawyersInDb = await _db.Queryable().In(x => x.cardId, cardids).ToListAsync(); - if (lawyersInDb.Any()) - { - var updatelist = new List(); - foreach (var item in lawyersInDb) - { - var lawyerinfo = lawyers.FirstOrDefault(x => x.cardId == item.cardId); - if (lawyerinfo == null) - { - continue; - } - if (item.name != lawyerinfo.name || - item.sex != lawyerinfo.sex || - item.phone != lawyerinfo.phone || - item.departmentName != lawyerinfo.departmentName || - item.cardId != lawyerinfo.cardId) - { - item.name = lawyerinfo.name; - item.sex = lawyerinfo.sex; - item.identity = "律师"; - item.phone = lawyerinfo.phone; - item.departmentName = lawyerinfo.departmentName; - item.cardId = lawyerinfo.cardId; - updatelist.Add(item); - } + item.name = lawyerinfo.name; + item.sex = lawyerinfo.sex; + item.identity = "律师"; + item.phone = lawyerinfo.phone; + item.departmentName = lawyerinfo.departmentName; + item.cardId = lawyerinfo.cardId; + updatelist.Add(item); } - if (updatelist.Any()) - updated = await _db.Updateable(updatelist) - .IgnoreColumns(ignoreAllNullColumns: true) - .ExecuteCommandAsync(); } - var addlawyers = lawyers.Where(x => lawyersInDb.Any(e => e.cardId == x.cardId) == false).ToList(); + if (updatelist.Any()) + updated = await _db.Updateable(updatelist) + .IgnoreColumns(ignoreAllNullColumns: true) + .ExecuteCommandAsync(); + } + var addlawyers = lawyers.Where(x => lawyersInDb.Any(e => e.cardId == x.cardId) == false).ToList(); - if (addlawyers.Any()) - added = await _db.Insertable(addlawyers).ExecuteCommandAsync(); + if (addlawyers.Any()) + added = await _db.Insertable(addlawyers).ExecuteCommandAsync(); - res.IsSucceed = true; - res.result = new - { - updated, - added - }; - } - else + res.IsSucceed = true; + res.result = new { - res.IsSucceed = false; - res.Message = "数据格式不正确"; - } + updated, + added + }; } else { res.IsSucceed = false; - res.Message = "文件上传失败"; + res.Message = "数据格式不正确"; } } else { res.IsSucceed = false; - res.Message = "文件格式不支持"; + res.Message = "文件上传失败"; } + if (System.IO.File.Exists(path)) System.IO.File.Delete(path); + + if (System.IO.File.Exists(excelpath)) + System.IO.File.Delete(excelpath); + return res; } /// @@ -401,6 +404,7 @@ namespace _24Hour.Controllers.Common .WhereIF(string.IsNullOrEmpty(input.partyCardId) == false, x => x.partycardId == input.partyCardId) .WhereIF(string.IsNullOrEmpty(input.caseName) == false, x => x.casename.Contains(input.caseName)) .WhereIF(string.IsNullOrEmpty(input.bmsah) == false, x => x.bmsah.Contains(input.bmsah)) + .WhereIF(input.state !=null, x => x.status==input.state) .Where(x => x.createTime.Value.Date >= starttime.Date && x.createTime.Value.Date <= endtime.Date) .Where(x => x.unitcode == input.unitCode) .WhereIF(input.Isdelete != null, x => x.IsDeleted == input.Isdelete) @@ -953,23 +957,8 @@ namespace _24Hour.Controllers.Common var UnitCode = _userdata.unitCode; var UnitName = departmenginfo.unitjc; - var querylawyer = await QueryLsList(identitycardId); #region 数据检查 - if (querylawyer.IsSucceed == true) - { - if (querylawyer.result.content.Count <= 0) - { - result.IsSucceed = false; - result.Message = "案管系统不存在该律师信息,请注意核实律师信息"; - return result; - } - } - else - { - result.IsSucceed = false; - result.Message = "数据上传案管系统失败,查询律师信息失败"; - return result; - } + var querydsr = await QueryDsrList(bmsah, UnitCode, partyIDcard); if (querydsr.IsSucceed == true) @@ -1036,8 +1025,10 @@ namespace _24Hour.Controllers.Common }, Zbls = "", Lxdh = "", - Lxdz = "" + Lxdz = "", + LawyerName=lawyer.name }); + logger.LogInformation(registerinforequest.ConvertToJsonStr()); if (registerinforequest.IsSucceed == true) { var registerinfo = registerinforequest.result; @@ -1050,16 +1041,19 @@ namespace _24Hour.Controllers.Common { foreach (var item in identityphotos) { + var urlpath = item.Split('/'); + var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); - var path = item.Replace(@"/", @"\"); - var filepath = Environment.CurrentDirectory+@"\wwwroot"+path; if (System.IO.File.Exists(filepath)) { - var basestr = Convert.ToBase64String(System.IO.File.ReadAllBytes(filepath)); + var basestr = Elight.Utility.Encrypt.DataEncryption.Decryptiones(filepath); + var filename = Path.GetFileName(filepath); + filename = Path.ChangeExtension(filename, ".jpg"); + logger.LogInformation($"upload image {filename}"); await twentyClient.UploadImage(new UploadDto() { Bmsah = registerinfo.bmsah, - FileName = Path.GetFileName(filepath), + FileName = filename, Code = typecode, Bhdlbm = registerinfo.bhdlbh, UnitCode = registerinfo.dwbm, @@ -1067,22 +1061,17 @@ namespace _24Hour.Controllers.Common ImageStr = basestr }); } - } } }; /// 1423000000100-律师执业证书,1423000000200-律师事务所证, 1423000000300- 授权委托书, 1423000000400- 法律援助公函,1423000000500-身份证件 ,1423000000600-关系证明材料, 1423000000700- 其他 - - - await UploadPhoto(lawyer.identityphoto, "1423000000100"); - await UploadPhoto(lawyer.departmentPhoto, "1423000000200"); - await UploadPhoto(lawyersvc.annex, "1423000000300"); - await UploadPhoto(lawyersvc.legalAidPhoto, "1423000000400"); - await UploadPhoto(lawyer.cardIdphoto, "1423000000500"); - await UploadPhoto(lawyersvc.relationshipProofPhoto, "1423000000600"); - await UploadPhoto(lawyersvc.otherPhoto, "1423000000700"); - - + await UploadPhoto(lawyer.identityphoto, "1423000000100"); + await UploadPhoto(lawyersvc.departmentPhoto, "1423000000200"); + await UploadPhoto(lawyersvc.annex, "1423000000300"); + await UploadPhoto(lawyersvc.legalAidPhoto, "1423000000400"); + await UploadPhoto(lawyer.cardIdphoto, "1423000000500"); + await UploadPhoto(lawyersvc.relationshipProofPhoto, "1423000000600"); + await UploadPhoto(lawyersvc.otherPhoto, "1423000000700"); var markinginput = new ApplyMarKingDto() { bhdlbh = registerinfo.bhdlbh, @@ -1100,11 +1089,10 @@ namespace _24Hour.Controllers.Common sxlxdm = "1405187400001", sxlxmc = "申请阅卷", zrrmc = party, - - }; var applymarkingrequest = await ApplyMarKing(markinginput); + logger.LogInformation(applymarkingrequest.ConvertToJsonStr()); if (applymarkingrequest.IsSucceed == true) { var applymarkinginfo = applymarkingrequest.result; @@ -1124,16 +1112,20 @@ namespace _24Hour.Controllers.Common yjjzsj = permissibleStartTime, yjkssj = permissibleEndTime, }); + logger.LogInformation(Arrangerequest.ConvertToJsonStr()); if (Arrangerequest.IsSucceed == true) { result.IsSucceed = true; result.Message = "数据上传案管系统成功"; + result.result = Arrangerequest.Message; return result; } else { + result.IsSucceed = false; result.Message = "数据上传案管系统失败,申请阅卷添加失败"; + result.result = Arrangerequest.Message; return result; } } @@ -1141,6 +1133,7 @@ namespace _24Hour.Controllers.Common { result.IsSucceed = false; result.Message = "数据上传案管系统失败,申请添加失败"; + result.result = applymarkingrequest.Message; return result; } } @@ -1148,6 +1141,7 @@ namespace _24Hour.Controllers.Common { result.IsSucceed = false; result.Message = "数据上传案管系统失败,登记添加失败"; + result.result = registerinforequest.Message; return result; } } @@ -1603,7 +1597,7 @@ namespace _24Hour.Controllers.Common new { name = "其他", - value = allCount-excount, + value = allCount - excount, } }; registerCount.AddRange(list); @@ -1742,7 +1736,7 @@ namespace _24Hour.Controllers.Common /// /// 导入律师信息 /// - /// + /// /// [HttpGet] [Route("ImportLawyerArchivesInfo")] @@ -1756,13 +1750,16 @@ namespace _24Hour.Controllers.Common result.IsSucceed = false; return result; } + var decrypath = System.IO.Path.ChangeExtension(path, ".zip"); + Elight.Utility.Encrypt.DataEncryption.Decryption(path, decrypath); + var dir = Path.Combine(Environment.CurrentDirectory, "wwwroot", "CaseFile", "imports"); var userdir = Path.Combine(dir, "users"); var lawyersvcs = Path.Combine(dir, "lawyersvcs"); - var extratname = Path.GetFileNameWithoutExtension(path); + var extratname = Path.GetFileNameWithoutExtension(decrypath); var extratdirpath = Path.Combine(dir, extratname); - ZipFile.ExtractToDirectory(path, extratdirpath, true); + ZipFile.ExtractToDirectory(decrypath, extratdirpath, true); var zipusers = Path.Combine(extratdirpath, "users"); var ziplawyersvcs = Path.Combine(extratdirpath, "lawyerservices"); var zipjson = Path.Combine(extratdirpath, "data"); @@ -1781,6 +1778,25 @@ namespace _24Hour.Controllers.Common lawyerservices = default(List), users = default(List) }); + //替换数据前先删除之前保存的图片 + var deleteOldData = (string? jsonpath) => + { + if (string.IsNullOrEmpty(jsonpath)) + { + return; + } + var photos = jsonpath.ConvertToModel>() ?? new List(); + foreach (var photo in photos.Where(x => x != null)) + { + var urlpath = photo.Split('/'); + var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); + if (System.IO.File.Exists(filepath)) + { + System.IO.File.Delete(filepath); + } + } + }; + foreach (var userim in importdata.users.Where(x => x != null)) { var user = await _db.Queryable() @@ -1796,15 +1812,6 @@ namespace _24Hour.Controllers.Common .Replace(@"\", @"/")) .ToList() .ConvertToJsonStr(); - - var departmentPhotos = Path.Combine(zipusers, userim.cardId, "departmentPhotos"); - var departments = new DirectoryInfo(departmentPhotos) - .GetFiles() - .Select(x => "/CaseFile/imports/" + Path.GetRelativePath(dir, x.FullName) - .Replace(@"\", @"/")) - .ToList() - .ConvertToJsonStr(); - var cardidphotos = Path.Combine(zipusers, userim.cardId, "cardids"); var cardids = new DirectoryInfo(cardidphotos) .GetFiles() @@ -1812,12 +1819,11 @@ namespace _24Hour.Controllers.Common .Replace(@"\", @"/")) .ToList() .ConvertToJsonStr(); - if (user == null) { userim.cardIdphoto = cardids; userim.identityphoto = files; - userim.departmentPhoto = departments; + userim.unitCode = _userdata.unitCode; userim.identity = "律师"; userim.IsDeleted = 0; @@ -1827,9 +1833,11 @@ namespace _24Hour.Controllers.Common } else { + deleteOldData(user.cardIdphoto); + deleteOldData(user.identityphoto); + user.cardIdphoto = cardids; user.identityphoto = files; - user.departmentPhoto = departments; user.unitCode = _userdata.unitCode; user.identity = "律师"; user.IsDeleted = 0; @@ -1839,7 +1847,6 @@ namespace _24Hour.Controllers.Common { x.cardIdphoto, x.identityphoto, - x.departmentPhoto, x.unitCode, x.identity, x.IsDeleted @@ -1853,39 +1860,23 @@ namespace _24Hour.Controllers.Common { var svc = await _db.Queryable() .Where(x => x.Id == lawyersvc.Id).FirstAsync(); + var loadphoto = (string dirname) => + { + var dirpath = Path.Combine(ziplawyersvcs, lawyersvc.Id, dirname); + var photos = new DirectoryInfo(dirpath) + .GetFiles() + .Select(x => "/CaseFile/imports/" + Path.GetRelativePath(dir, x.FullName) + .Replace(@"\", @"/")) + .ToList() + .ConvertToJsonStr(); + return photos; + }; - var annexphoto = Path.Combine(ziplawyersvcs, lawyersvc.Id, "annexs"); - var annexs = new DirectoryInfo(annexphoto) - .GetFiles() - .Select(x => "/CaseFile/imports/" + Path.GetRelativePath(dir, x.FullName) - .Replace(@"\", @"/")) - .ToList() - .ConvertToJsonStr(); - - - var legalAidPhoto = Path.Combine(ziplawyersvcs, lawyersvc.Id, "legalAidPhoto"); - var legalAidPhotos = new DirectoryInfo(legalAidPhoto) - .GetFiles() - .Select(x => "/CaseFile/imports/" + Path.GetRelativePath(dir, x.FullName) - .Replace(@"\", @"/")) - .ToList() - .ConvertToJsonStr(); - - var relationshipProofPhoto = Path.Combine(ziplawyersvcs, lawyersvc.Id, "relationshipProofPhoto"); - var relationshipProofPhotos = new DirectoryInfo(relationshipProofPhoto) - .GetFiles() - .Select(x => "/CaseFile/imports/" + Path.GetRelativePath(dir, x.FullName) - .Replace(@"\", @"/")) - .ToList() - .ConvertToJsonStr(); - - var otherPhoto = Path.Combine(ziplawyersvcs, lawyersvc.Id, "otherPhoto"); - var otherPhotos = new DirectoryInfo(otherPhoto) - .GetFiles() - .Select(x => "/CaseFile/imports/" + Path.GetRelativePath(dir, x.FullName) - .Replace(@"\", @"/")) - .ToList() - .ConvertToJsonStr(); + var annexs = loadphoto("annexs"); + var legalAidPhotos = loadphoto("legalAidPhoto"); + var relationshipProofPhotos = loadphoto("relationshipProofPhoto"); + var otherPhotos = loadphoto("otherPhoto"); + var departmentPhotos = loadphoto("departmentPhoto"); if (svc == null) { @@ -1901,6 +1892,7 @@ namespace _24Hour.Controllers.Common lawyersvc.legalAidPhoto = legalAidPhotos; lawyersvc.relationshipProofPhoto = relationshipProofPhotos; lawyersvc.otherPhoto = otherPhotos; + lawyersvc.departmentPhoto = departmentPhotos; lawyersvc.IsAssigned = false; _db.BeginTran(); var num = await _db.Insertable(lawyersvc).ExecuteCommandAsync(); @@ -1915,11 +1907,20 @@ namespace _24Hour.Controllers.Common .Where(x => x.identity == "律师") .FirstAsync(); + + deleteOldData(svc?.annex); + deleteOldData(svc?.legalAidPhoto); + deleteOldData(svc?.relationshipProofPhoto); + deleteOldData(svc?.otherPhoto); + deleteOldData(svc?.departmentPhoto); + + svc.createuserId = lawyer.Id; svc.annex = annexs; svc.legalAidPhoto = legalAidPhotos; svc.relationshipProofPhoto = relationshipProofPhotos; svc.otherPhoto = otherPhotos; + svc.departmentPhoto = departmentPhotos; svc.IsAssigned = false; svc.IsDeleted = 0; _db.BeginTran(); @@ -1996,60 +1997,31 @@ namespace _24Hour.Controllers.Common var lawyerdir = Path.Combine(packegdir, "lawyerservices", item.Id); if (Directory.Exists(lawyerdir) == false) Directory.CreateDirectory(lawyerdir); - var files = item.annex.ConvertToModel>() ?? new List(); - var annecdir = Path.Combine(lawyerdir, "annexs"); - if (Directory.Exists(annecdir) == false) Directory.CreateDirectory(annecdir); - foreach (var file in files.Where(x => x != null)) - { - var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); - if (System.IO.File.Exists(filepath)) - { - var targetfile = Path.Combine(annecdir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile); - } - } - - var legalphotots = item.legalAidPhoto.ConvertToModel>() ?? new List(); - var legalAidPhotoDir = Path.Combine(lawyerdir, "legalAidPhoto"); - if (Directory.Exists(legalAidPhotoDir) == false) Directory.CreateDirectory(legalAidPhotoDir); - - foreach (var legalphotot in legalphotots.Where(x => x != null)) - { - logger.LogInformation(legalphotot); - var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + legalphotot.Replace("/", @"\"); - if (System.IO.File.Exists(filepath)) - { - var targetfile = Path.Combine(legalAidPhotoDir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile); - } - } - - - var relationshipProofPhotos = item.relationshipProofPhoto.ConvertToModel>() ?? new List(); - var relationshipProofPhotoDir = Path.Combine(lawyerdir, "relationshipProofPhoto"); - if (Directory.Exists(relationshipProofPhotoDir) == false) Directory.CreateDirectory(relationshipProofPhotoDir); - foreach (var relationshipProofPhoto in relationshipProofPhotos.Where(x => x != null)) + var packetPhotoField = (string? photostring, string? dirname) => { - var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + relationshipProofPhoto.Replace("/", @"\"); - if (System.IO.File.Exists(filepath)) + if (string.IsNullOrEmpty(photostring)) { - var targetfile = Path.Combine(legalAidPhotoDir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile); + return; } - } - var otherPhotos = item.otherPhoto.ConvertToModel>() ?? new List(); - var otherPhotoDir = Path.Combine(lawyerdir, "otherPhoto"); - if (Directory.Exists(otherPhotoDir) == false) Directory.CreateDirectory(otherPhotoDir); - foreach (var otherPhoto in otherPhotos.Where(x => x != null)) - { - var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + otherPhoto.Replace("/", @"\"); - if (System.IO.File.Exists(filepath)) + var photos = photostring.ConvertToModel>() ?? new List(); + var photoDirname = Path.Combine(lawyerdir, dirname); + if (Directory.Exists(photoDirname) == false) Directory.CreateDirectory(photoDirname); + foreach (var photo in photos.Where(x => x != null)) { - var targetfile = Path.Combine(legalAidPhotoDir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile); + var urlpath = photo.Split('/'); + var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); + if (System.IO.File.Exists(filepath)) + { + var targetfile = Path.Combine(photoDirname, Path.GetFileName(filepath)); + System.IO.File.Copy(filepath, targetfile, true); + } } - } - + }; + packetPhotoField(item?.annex, "annexs"); + packetPhotoField(item?.legalAidPhoto, "legalAidPhoto"); + packetPhotoField(item?.relationshipProofPhoto, "relationshipProofPhoto"); + packetPhotoField(item?.otherPhoto, "otherPhoto"); + packetPhotoField(item?.departmentPhoto, "departmentPhoto"); } //存储用户的相关附件 foreach (var item in users) @@ -2058,15 +2030,16 @@ namespace _24Hour.Controllers.Common var userdir = Path.Combine(packegdir, "users", item.cardId); //保存身份证图片 - var cardids = item.cardIdphoto.ConvertToModel>(); + var cardids = item.cardIdphoto.ConvertToModel>() ?? new List(); var cardidDir = Path.Combine(userdir, "cardids"); if (Directory.Exists(cardidDir) == false) Directory.CreateDirectory(cardidDir); foreach (var file in cardids) { - var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); + var urlpath = file.Split('/'); + var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); if (System.IO.File.Exists(filepath)) { - System.IO.File.Copy(filepath, Path.Combine(cardidDir, Path.GetFileName(filepath))); + System.IO.File.Copy(filepath, Path.Combine(cardidDir, Path.GetFileName(filepath)), true); } } //保存工作证图片 律师职业证书 @@ -2075,30 +2048,39 @@ namespace _24Hour.Controllers.Common if (Directory.Exists(identityphotosDir) == false) Directory.CreateDirectory(identityphotosDir); foreach (var file in identityphotos) { - var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); + // var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); + var urlpath = file.Split('/'); + var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); if (System.IO.File.Exists(filepath)) { - System.IO.File.Copy(filepath, Path.Combine(identityphotosDir, Path.GetFileName(filepath))); + System.IO.File.Copy(filepath, Path.Combine(identityphotosDir, Path.GetFileName(filepath)), true); } } - var departmentPhotos = item.departmentPhoto.ConvertToModel>(); - var departmentPhotosDir = Path.Combine(userdir, "departmentPhotos"); - if (Directory.Exists(departmentPhotosDir) == false) Directory.CreateDirectory(departmentPhotosDir); - foreach (var file in departmentPhotos) - { - var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); - if (System.IO.File.Exists(filepath)) - { - System.IO.File.Copy(filepath, Path.Combine(departmentPhotosDir, Path.GetFileName(filepath))); - } - } + ////var departmentPhotos = item.departmentPhoto.ConvertToModel>(); + ////var departmentPhotosDir = Path.Combine(userdir, "departmentPhotos"); + ////if (Directory.Exists(departmentPhotosDir) == false) Directory.CreateDirectory(departmentPhotosDir); + ////foreach (var file in departmentPhotos) + ////{ + //// //var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); + //// var urlpath = file.Split('/'); + //// var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); + //// if (System.IO.File.Exists(filepath)) + //// { + //// System.IO.File.Copy(filepath, Path.Combine(departmentPhotosDir, Path.GetFileName(filepath)), true); + //// } + ////} } logger.LogInformation("step4"); ZipFile.CreateFromDirectory(packegdir, packegzipname); Directory.Delete(packegdir, true); - result.result = $"/temp/{packegdirname}.zip"; + FileInfo fi = new FileInfo(packegzipname); //xx/xx/aa.rar + + var akspath = System.IO.Path.ChangeExtension(packegzipname, ".aks"); + fi.MoveTo(akspath, true); //xx/xx/xx.rar + FileInfo fimoved = new FileInfo(akspath); + result.result = fimoved.FullName; result.IsSucceed = true; logger.LogInformation("step5"); return result; diff --git a/24Hour/Controllers/LoginController.cs b/24Hour/Controllers/LoginController.cs index 903d2e1..452e3da 100644 --- a/24Hour/Controllers/LoginController.cs +++ b/24Hour/Controllers/LoginController.cs @@ -1,57 +1,57 @@ using _24Hour.Model; using com.sun.org.apache.bcel.@internal.generic; -using com.sun.xml.@internal.ws.api.model; -using Elight.Entity; -using Elight.Logic; -using Elight.Logic.SystemModel; -using Elight.Utility; -using Elight.Utility.Code; -using Elight.Utility.Encrypt; -using Elight.Utility.Extensions; -using Elight.Utility.logs; -using java.security; -using Microsoft.AspNetCore.Authorization; -using Microsoft.AspNetCore.Mvc; -using Microsoft.Extensions.Configuration; +using com.sun.xml.@internal.ws.api.model; +using Elight.Entity; +using Elight.Logic; +using Elight.Logic.SystemModel; +using Elight.Utility; +using Elight.Utility.Code; +using Elight.Utility.Encrypt; +using Elight.Utility.Extensions; +using Elight.Utility.logs; +using java.security; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; -using Microsoft.IdentityModel.Tokens; -using Newtonsoft.Json; -using SqlSugar; -using System.IdentityModel.Tokens.Jwt; -using System.Runtime.Serialization; -using System.Security.Claims; -using System.Text; - -namespace _24Hour.Controllers +using Microsoft.IdentityModel.Tokens; +using Newtonsoft.Json; +using SqlSugar; +using System.IdentityModel.Tokens.Jwt; +using System.Runtime.Serialization; +using System.Security.Claims; +using System.Text; + +namespace _24Hour.Controllers { - /// - /// ¼ - /// -#if DEBUG + /// + /// ¼ + /// +#if DEBUG -#else - [HiddenApi] -#endif - [ApiController] - [Route("api/APP")] - public class LoginController : ControllerBase - { - private readonly IConfiguration _configuration; - private readonly SqlSugarClient _db;//ݿ - private readonly WriteSysLog _logs;//־ - private readonly ILogger _logger;//־ - private readonly WechatMessagerClient wechatMessagerClient; - Result ret = new Result(); - public LoginController(ILogger logger, SqlSugarClient db, IConfiguration configuration, WechatMessagerClient _wechatMessagerClient) - { - _logger = logger; - _db = db; - _configuration = configuration; - this.wechatMessagerClient = _wechatMessagerClient; +#else + [HiddenApi] +#endif + [ApiController] + [Route("api/APP")] + public class LoginController : ControllerBase + { + private readonly IConfiguration _configuration; + private readonly SqlSugarClient _db;//ݿ + private readonly WriteSysLog _logs;//־ + private readonly ILogger _logger;//־ + private readonly WechatMessagerClient wechatMessagerClient; + Result ret = new Result(); + public LoginController(ILogger logger, SqlSugarClient db, IConfiguration configuration, WechatMessagerClient _wechatMessagerClient) + { + _logger = logger; + _db = db; + _configuration = configuration; + this.wechatMessagerClient = _wechatMessagerClient; } - [HttpPost] - [Route("LoginDefault")] + [HttpPost] + [Route("LoginDefault")] [CustomCorsActionFilterAttribute] public async Task LoginDefault() { @@ -77,10 +77,10 @@ namespace _24Hour.Controllers date.departmentName = dept.departname; } } - #region jwttoken + #region jwttoken var tokenHandler = new JwtSecurityTokenHandler(); var claims = new Claim[] - { + { new Claim(ClaimTypes.UserData,JsonConvert.SerializeObject(date)), }; @@ -116,23 +116,23 @@ namespace _24Hour.Controllers #endregion ret.IsSucceed = true; return ret; - } - - - /// - /// ϵͳ¼ - /// - /// - /// - [HttpPost] - [Route("SystemLogin")] - [CustomCorsActionFilterAttribute] - public async Task SystemLogin(UserLogin login) - { - try - { + } + + + /// + /// ϵͳ¼ + /// + /// + /// + [HttpPost] + [Route("SystemLogin")] + [CustomCorsActionFilterAttribute] + public async Task SystemLogin(UserLogin login) + { + try + { var Passmd5 = Md5.Encrypt32(login.Password).ToLower(); - var date = await _db.Queryable().Where(x => x.phone == login.phone && x.IsDeleted == 0).FirstAsync(); + var date = await _db.Queryable().Where(x => x.phone == login.phone && x.IsDeleted == 0).FirstAsync(); if (date == null) { ret.IsSucceed = false; @@ -154,10 +154,10 @@ namespace _24Hour.Controllers } } - #region jwttoken + #region jwttoken var tokenHandler = new JwtSecurityTokenHandler(); var claims = new Claim[] - { + { new Claim(ClaimTypes.UserData,JsonConvert.SerializeObject(date)), }; @@ -184,7 +184,7 @@ namespace _24Hour.Controllers phone = date.phone, photo = date.photo, duties = date.duties, - identity = date.identity, + identity = date.identity, openId = date.wechatId, unitCode = date.unitCode, unitname = Unitdate?.unitname, @@ -192,31 +192,31 @@ namespace _24Hour.Controllers departmentName = date.departmentName, token = tokenString }; - #endregion - } - catch (Exception ex) - { - ret.IsSucceed = false; - ret.Message = $"{ex.Message}"; - LogService.WriteLog(ex, "¼"); - } - return ret; - } - - /// - /// app--¼ - /// - /// - /// - [HttpPost] - [Route("Login")] - [CustomCorsActionFilterAttribute] - public async Task Login(UserLogin login) - { - try - { - var Passmd5 = Md5.Encrypt32(login.Password).ToLower(); - var date = await _db.Queryable().Where(x => x.phone == login.phone && x.IsDeleted == 0).FirstAsync(); + #endregion + } + catch (Exception ex) + { + ret.IsSucceed = false; + ret.Message = $"{ex.Message}"; + LogService.WriteLog(ex, "¼"); + } + return ret; + } + + /// + /// app--¼ + /// + /// + /// + [HttpPost] + [Route("Login")] + [CustomCorsActionFilterAttribute] + public async Task Login(UserLogin login) + { + try + { + var Passmd5 = Md5.Encrypt32(login.Password).ToLower(); + var date = await _db.Queryable().Where(x => x.phone == login.phone && x.IsDeleted == 0).FirstAsync(); if (date == null) { ret.IsSucceed = false; @@ -267,10 +267,10 @@ namespace _24Hour.Controllers date.departmentName = dept.departname; } } - #region jwttoken + #region jwttoken var tokenHandler = new JwtSecurityTokenHandler(); var claims = new Claim[] - { + { new Claim(ClaimTypes.UserData,JsonConvert.SerializeObject(date)), }; @@ -295,7 +295,7 @@ namespace _24Hour.Controllers phone = date.phone, photo = date.photo, duties = date.duties, - identity = date.identity, + identity = date.identity, openId = date.wechatId, usertype = date.usertype, unitCode = date.unitCode, @@ -303,16 +303,16 @@ namespace _24Hour.Controllers departmentName = date.departmentName, token = tokenString }; - #endregion - ret.IsSucceed = true; - } - catch (Exception ex) - { - ret.IsSucceed = false; - ret.Message = $"{ex.Message}"; - LogService.WriteLog(ex, "¼"); - } - return ret; + #endregion + ret.IsSucceed = true; + } + catch (Exception ex) + { + ret.IsSucceed = false; + ret.Message = $"{ex.Message}"; + LogService.WriteLog(ex, "¼"); + } + return ret; } /// @@ -320,8 +320,8 @@ namespace _24Hour.Controllers /// /// /// - [HttpGet] - [Route("WeChatLoginCode")] + [HttpGet] + [Route("WeChatLoginCode")] public async Task WeChatLoginByCode(string code) { var opendata = await GetOpenId(code); @@ -339,8 +339,8 @@ namespace _24Hour.Controllers /// /// /// - [HttpGet] - [Route("WeChatLoginByGzhCode")] + [HttpGet] + [Route("WeChatLoginByGzhCode")] public async Task WeChatLoginByGzhCode(string code) { var opendata = await GetGzhOpenId(code); @@ -359,8 +359,8 @@ namespace _24Hour.Controllers ///// ///// ///// - //[HttpGet] - //[Route("GetCode")] + //[HttpGet] + //[Route("GetCode")] //public async Task GetCode(string code,string state) //{ // var opendata = await GetGzhOpenId(code); @@ -372,128 +372,133 @@ namespace _24Hour.Controllers // { // return opendata; // } - //} - - /// - /// ΢Ȩ¼ - /// - /// - /// - [HttpGet] - [Route("WeChatLogin")] - public async Task WeChatLogin(string openId) - { - var date = await _db.Queryable() - .Where(q => q.IsDeleted == 0 && q.wechatId == openId) - .OrderByDescending(x => x.createtime) - .FirstAsync(); - if (date != null) + //} + + /// + /// ΢Ȩ¼ + /// + /// + /// + [HttpGet] + [Route("WeChatLogin")] + public async Task WeChatLogin(string openId) + { + var date = await _db.Queryable() + .Where(q => q.IsDeleted == 0 && q.wechatId == openId) + .OrderByDescending(x => x.createtime) + .FirstAsync(); + if (date != null) { if (date.identity == "ʦ" && date.audit == 1) { + ret.IsSucceed = false; ret.Message = $"ûϢδͨԭ{date.describe}עᣡ"; + ret.result = "ûϢδͨ"; return ret; } else if (date.identity == "ʦ" && date.audit == 2) { ret.IsSucceed = false; ret.Message = "ûϢУ"; + ret.result = "ûϢ"; return ret; - } + } if (date.isdeactivate == 1) { ret.IsSucceed = false; ret.Message = "˺ѱãϵԱ"; + ret.result = "˺ѱ"; + return ret; + } + if (date.usertype == 0 && date.becurrent == 1) + { + ret.IsSucceed = false; + ret.Message = $"˺δȨ޷¼ϵԱ"; + ret.result = "˺δȨ޷¼"; return ret; - } - if (date.usertype == 0 && date.becurrent == 1) - { - ret.IsSucceed = false; - ret.Message = $"˺δȨ޷¼ϵԱ"; - return ret; - } - #region jwttoken - var tokenHandler = new JwtSecurityTokenHandler(); - var claims = new Claim[] - { - new Claim(ClaimTypes.UserData,JsonConvert.SerializeObject(date)), - }; - - var key = new SymmetricSecurityKey(Encoding.ASCII.GetBytes(_configuration.GetSection("JwtConfiguration:Jwtkey").Value)); - var signingCredentials = new SigningCredentials(key, SecurityAlgorithms.HmacSha256); - //Token - var jwttoken = new JwtSecurityToken( - issuer: _configuration.GetSection("JwtConfiguration:Issuer").Value, - audience: _configuration.GetSection("JwtConfiguration:Audience").Value, - claims: claims, - notBefore: DateTime.Now, - expires: DateTime.Now.AddDays(1), - signingCredentials: signingCredentials - ); - //var token = new JwtSecurityTokenHandler().CreateToken(jwttoken); - var tokenString = new JwtSecurityTokenHandler().WriteToken(jwttoken); - ret.result = new - { - Id = date.Id, - name = date.name, - sex = date.sex, - phone = date.phone, - photo = date.photo, - duties = date.duties, - identity = date.identity, - usertype = date.usertype, - unitCode = date.unitCode, - token = tokenString, - openId = date.wechatId, - departmentPhoto = date.departmentPhoto, - identityphoto = date.identityphoto, - cardIdphoto = date.cardIdphoto, - departmentName = date.departmentName, - identitycardId = date.identitycardId, - departmentSCC = date.departmentUnifiedSocialCreditCode - }; - #endregion - ret.IsSucceed = true; - } - else - { - ret.IsSucceed = false; - ret.Message = "΢δȨע˺ţ"; - } - return ret; - } - - /// - /// APPû - /// - /// - /// - [HttpPost] - [Route("AddUser1")] - public async Task AddUser1(App_Sys_UserModel UserModel) - { - try + } + #region jwttoken + var tokenHandler = new JwtSecurityTokenHandler(); + var claims = new Claim[] + { + new Claim(ClaimTypes.UserData,JsonConvert.SerializeObject(date)), + }; + + var key = new SymmetricSecurityKey(Encoding.ASCII.GetBytes(_configuration.GetSection("JwtConfiguration:Jwtkey").Value)); + var signingCredentials = new SigningCredentials(key, SecurityAlgorithms.HmacSha256); + //Token + var jwttoken = new JwtSecurityToken( + issuer: _configuration.GetSection("JwtConfiguration:Issuer").Value, + audience: _configuration.GetSection("JwtConfiguration:Audience").Value, + claims: claims, + notBefore: DateTime.Now, + expires: DateTime.Now.AddDays(1), + signingCredentials: signingCredentials + ); + //var token = new JwtSecurityTokenHandler().CreateToken(jwttoken); + var tokenString = new JwtSecurityTokenHandler().WriteToken(jwttoken); + ret.result = new + { + Id = date.Id, + name = date.name, + sex = date.sex, + phone = date.phone, + photo = date.photo, + duties = date.duties, + identity = date.identity, + usertype = date.usertype, + unitCode = date.unitCode, + token = tokenString, + openId = date.wechatId, + identityphoto = date.identityphoto, + cardIdphoto = date.cardIdphoto, + departmentName = date.departmentName, + identitycardId = date.identitycardId, + departmentSCC = date.departmentUnifiedSocialCreditCode + }; + #endregion + ret.IsSucceed = true; + } + else + { + ret.IsSucceed = false; + ret.Message = "΢δȨע˺ţ"; + ret.result = "΢δȨ"; + } + return ret; + } + + /// + /// APPû + /// + /// + /// + [HttpPost] + [Route("AddUser1")] + public async Task AddUser1(App_Sys_UserModel UserModel) + { + try { - _logger.LogInformation(UserModel.ConvertToJsonStr()); + _logger.LogInformation(UserModel.ConvertToJsonStr()); //if (string.IsNullOrEmpty(UserModel.wechatId) && await _db.Queryable().AnyAsync(x => x.wechatId == UserModel.wechatId && x.IsDeleted == 0)) //{ // ret.IsSucceed = false; // ret.Message = "ǰ΢˺Ű"; // return ret; //} - if (string.IsNullOrEmpty(UserModel.wechatId) == false) - { - if (await _db.Queryable().AnyAsync(x => x.wechatId == UserModel.wechatId && x.IsDeleted == 0 && x.audit != 1 && x.isdeactivate == 0)) - { - ret.IsSucceed = false; - ret.Message = "ǰ΢˺Ű"; - return ret; - } - } - var data = await _db.Queryable().Where(q => q.phone == UserModel.phone && q.IsDeleted == 0).FirstAsync(); + if (string.IsNullOrEmpty(UserModel.wechatId) == false) + { + if (await _db.Queryable().AnyAsync(x => x.wechatId == UserModel.wechatId && x.IsDeleted == 0 && x.audit != 1 && x.isdeactivate == 0)) + { + ret.IsSucceed = false; + ret.Message = "ǰ΢˺Ű"; + return ret; + } + } + var data = await _db.Queryable().Where(q => q.phone == UserModel.phone && q.IsDeleted == 0).FirstAsync(); if (UserModel.identity == "ʦ") - { + { if (data != null && (data.identity != "ʦ" || data.audit == 0)) { ret.IsSucceed = false; @@ -512,7 +517,7 @@ namespace _24Hour.Controllers _db.BeginTran(); data.audit = 2; data.describe = ""; - data.photo = "/CaseFile/resource/headicon.png"; + data.photo = "/CaseFile/resource/headicon.aks"; data.name = UserModel.name; data.sex = UserModel.sex; data.phone = UserModel.phone; @@ -522,7 +527,6 @@ namespace _24Hour.Controllers data.Password = Elight.Utility.Encrypt.Md5.Encrypt32($"{UserModel.Password}").ToLower(); data.cardIdphoto = UserModel.cardIdphoto; data.identityphoto = UserModel.identityphoto; - data.departmentPhoto = UserModel.departmentPhoto; var num = await _db.Updateable(data).IgnoreColumns(true).ExecuteCommandAsync(); _db.CommitTran(); if (num > 0) @@ -554,7 +558,7 @@ namespace _24Hour.Controllers UserModel.audit = 2; if (string.IsNullOrEmpty(UserModel.photo)) { - UserModel.photo = "/CaseFile/resource/headicon.png"; + UserModel.photo = "/CaseFile/resource/headicon.aks"; } //Ĭ UserModel.Password = Elight.Utility.Encrypt.Md5.Encrypt32($"{UserModel.Password}").ToLower(); @@ -580,7 +584,7 @@ namespace _24Hour.Controllers ret.IsSucceed = true; ret.result = "ӳɹ"; } - } + } } else { @@ -598,7 +602,7 @@ namespace _24Hour.Controllers if (string.IsNullOrEmpty(UserModel.photo)) { - UserModel.photo = "/CaseFile/resource/headicon.png"; + UserModel.photo = "/CaseFile/resource/headicon.aks"; } var num = await _db.Insertable(UserModel).ExecuteCommandAsync(); _db.CommitTran(); @@ -606,57 +610,57 @@ namespace _24Hour.Controllers { ret.IsSucceed = true; ret.result = "ӳɹ"; - } - } - } - catch (System.Exception ex) - { - _db.RollbackTran(); - ret.IsSucceed = false; - ret.Message = ex.Message; - } - return ret; - } - - /// - /// λlist - /// - /// - /// - [HttpPost] - [Route("QueryUnitlist")] - public async Task QueryUnitlist(App_Sys_UnitInput Unitdata) - { - var list = await _db.Queryable() - .WhereIF(!Unitdata.unitCode.IsNull(), q => q.unitCode.Contains(Unitdata.unitCode)) - .WhereIF(!Unitdata.unitname.IsNull(), q => q.unitname.Contains(Unitdata.unitname)) - .WhereIF(!Unitdata.unitjc.IsNull(), q => q.unitjc.Contains(Unitdata.unitjc)) - .Where(q => q.IsDelete == 0).ToListAsync(); - ret.IsSucceed = true; - ret.result = list; - return ret; - } - - /// - /// ȡ豸Ƶַ - /// - /// - /// - [HttpGet] - [Route("getrtsp")] - public async Task getrtsp(string str) - { - ret.IsSucceed = true; - ret.result = $"{_configuration.GetSection($"Videoaddress:{str}").Value}"; - return ret; - } - - [HttpGet] - [Route("cardIdLogin")] - public async Task cardIdLogin(string cardId, string name) - { - var date = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.cardId == cardId && q.name == name).FirstAsync(); - if (date != null) + } + } + } + catch (System.Exception ex) + { + _db.RollbackTran(); + ret.IsSucceed = false; + ret.Message = ex.Message; + } + return ret; + } + + /// + /// λlist + /// + /// + /// + [HttpPost] + [Route("QueryUnitlist")] + public async Task QueryUnitlist(App_Sys_UnitInput Unitdata) + { + var list = await _db.Queryable() + .WhereIF(!Unitdata.unitCode.IsNull(), q => q.unitCode.Contains(Unitdata.unitCode)) + .WhereIF(!Unitdata.unitname.IsNull(), q => q.unitname.Contains(Unitdata.unitname)) + .WhereIF(!Unitdata.unitjc.IsNull(), q => q.unitjc.Contains(Unitdata.unitjc)) + .Where(q => q.IsDelete == 0).ToListAsync(); + ret.IsSucceed = true; + ret.result = list; + return ret; + } + + /// + /// ȡ豸Ƶַ + /// + /// + /// + [HttpGet] + [Route("getrtsp")] + public async Task getrtsp(string str) + { + ret.IsSucceed = true; + ret.result = $"{_configuration.GetSection($"Videoaddress:{str}").Value}"; + return ret; + } + + [HttpGet] + [Route("cardIdLogin")] + public async Task cardIdLogin(string cardId, string name) + { + var date = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.cardId == cardId && q.name == name).FirstAsync(); + if (date != null) { //if (date.usertype == 1 && date.audit == null) // { @@ -671,52 +675,52 @@ namespace _24Hour.Controllers // return ret; // } // else - if (date.usertype == 0 && date.becurrent == 1 && date.isdeactivate == 1) - { - ret.IsSucceed = false; - ret.Message = $"ûδȨ޷¼ϵԱ"; - return ret; - } - #region jwttoken - var tokenHandler = new JwtSecurityTokenHandler(); - var claims = new Claim[] - { - new Claim(ClaimTypes.UserData,JsonConvert.SerializeObject(date)), - }; - - var key = new SymmetricSecurityKey(Encoding.ASCII.GetBytes(_configuration.GetSection("JwtConfiguration:Jwtkey").Value)); - var signingCredentials = new SigningCredentials(key, SecurityAlgorithms.HmacSha256); - //Token - var jwttoken = new JwtSecurityToken( - issuer: _configuration.GetSection("JwtConfiguration:Issuer").Value, - audience: _configuration.GetSection("JwtConfiguration:Audience").Value, - claims: claims, - notBefore: DateTime.Now, - expires: DateTime.Now.AddDays(1), - signingCredentials: signingCredentials - ); - //var token = new JwtSecurityTokenHandler().CreateToken(jwttoken); - var tokenString = new JwtSecurityTokenHandler().WriteToken(jwttoken); - ret.result = new - { - Id = date.Id, - name = date.name, - sex = date.sex, - phone = date.phone, - photo = date.photo, - duties = date.duties, - identity = date.identity, - openId = date.wechatId, - usertype = date.usertype, - unitCode = date.unitCode, - token = tokenString - }; - #endregion - ret.IsSucceed = true; - } - else + if (date.usertype == 0 && date.becurrent == 1 && date.isdeactivate == 1) + { + ret.IsSucceed = false; + ret.Message = $"ûδȨ޷¼ϵԱ"; + return ret; + } + #region jwttoken + var tokenHandler = new JwtSecurityTokenHandler(); + var claims = new Claim[] + { + new Claim(ClaimTypes.UserData,JsonConvert.SerializeObject(date)), + }; + + var key = new SymmetricSecurityKey(Encoding.ASCII.GetBytes(_configuration.GetSection("JwtConfiguration:Jwtkey").Value)); + var signingCredentials = new SigningCredentials(key, SecurityAlgorithms.HmacSha256); + //Token + var jwttoken = new JwtSecurityToken( + issuer: _configuration.GetSection("JwtConfiguration:Issuer").Value, + audience: _configuration.GetSection("JwtConfiguration:Audience").Value, + claims: claims, + notBefore: DateTime.Now, + expires: DateTime.Now.AddDays(1), + signingCredentials: signingCredentials + ); + //var token = new JwtSecurityTokenHandler().CreateToken(jwttoken); + var tokenString = new JwtSecurityTokenHandler().WriteToken(jwttoken); + ret.result = new + { + Id = date.Id, + name = date.name, + sex = date.sex, + phone = date.phone, + photo = date.photo, + duties = date.duties, + identity = date.identity, + openId = date.wechatId, + usertype = date.usertype, + unitCode = date.unitCode, + token = tokenString + }; + #endregion + ret.IsSucceed = true; + } + else { - var datea = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.cardId == cardId).FirstAsync(); + var datea = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.cardId == cardId).FirstAsync(); if (datea == null) { var unitcode = _configuration.GetSection("CaseTwenty:UnitCode").Value; @@ -737,15 +741,15 @@ namespace _24Hour.Controllers ret.IsSucceed = true; ret.result = "ӳɹ"; } - } + } else { - ret.IsSucceed = false; - ret.Message = $"ûδȨ޷¼ϵԱ"; + ret.IsSucceed = false; + ret.Message = $"ûδȨ޷¼ϵԱ"; return ret; } - } - return ret; + } + return ret; } /// /// СAppID @@ -769,17 +773,17 @@ namespace _24Hour.Controllers /// [HttpGet("GetGzhOpenId")] public Task GetGzhOpenId(string code) => wechatMessagerClient.GetGzhOpenId(code); - } - - - public class UserLogin - { - [DataMember] - public string phone { get; set; } - /// - /// ¼ - /// - [DataMember] - public string Password { get; set; } - } + } + + + public class UserLogin + { + [DataMember] + public string phone { get; set; } + /// + /// ¼ + /// + [DataMember] + public string Password { get; set; } + } } \ No newline at end of file diff --git a/24Hour/Controllers/system/SystemControllerController.cs b/24Hour/Controllers/system/SystemControllerController.cs index f04b444..0c78052 100644 --- a/24Hour/Controllers/system/SystemControllerController.cs +++ b/24Hour/Controllers/system/SystemControllerController.cs @@ -188,7 +188,7 @@ namespace _24Hour.Controllers.system UserDate.createuserId = _userdata.Id.ToString(); UserDate.createusername = _userdata.name; UserDate.usertype = 0; - UserDate.photo = "/CaseFile/resource/headicon.png"; + UserDate.photo = "/CaseFile/resource/headicon.aks"; //默认密码 UserDate.Password = string.IsNullOrEmpty(UserDate.Password) ? Elight.Utility.Encrypt.Md5.Encrypt32($"mr123456").ToLower() : Elight.Utility.Encrypt.Md5.Encrypt32(UserDate.Password).ToLower(); var roledata = new App_Sys_RoleUserModel(); @@ -695,74 +695,74 @@ namespace _24Hour.Controllers.system /// /// /// - [HttpGet] - [Route("EditDepartmentPhoto")] - public async Task EditDepartmentPhoto(string photo) - { - try - { - _db.BeginTran(); - var userlist = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.Id == _userdata.Id).ToListAsync(); - userlist.ForEach(q => - { - //头像地址 - q.departmentPhoto = photo; - }); - var num = await _db.Updateable(userlist).ExecuteCommandAsync(); - _db.CommitTran(); - if (num > 0) - { - result.IsSucceed = true; - result.result = "替换成功"; - } - } - catch (System.Exception ex) - { - _db.RollbackTran(); - result.IsSucceed = false; - result.Message = ex.Message; - LogService.WriteLog(ex, "用户部门证件替换"); - } - _logs.WriteSysLogadd("用户管理", "用户部门证件替换", result, _db); - return result; - } + //[HttpGet] + //[Route("EditDepartmentPhoto")] + //public async Task EditDepartmentPhoto(string photo) + //{ + // try + // { + // _db.BeginTran(); + // var userlist = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.Id == _userdata.Id).ToListAsync(); + // userlist.ForEach(q => + // { + // //头像地址 + // q.departmentPhoto = photo; + // }); + // var num = await _db.Updateable(userlist).ExecuteCommandAsync(); + // _db.CommitTran(); + // if (num > 0) + // { + // result.IsSucceed = true; + // result.result = "替换成功"; + // } + // } + // catch (System.Exception ex) + // { + // _db.RollbackTran(); + // result.IsSucceed = false; + // result.Message = ex.Message; + // LogService.WriteLog(ex, "用户部门证件替换"); + // } + // _logs.WriteSysLogadd("用户管理", "用户部门证件替换", result, _db); + // return result; + //} /// /// 根据律师id修改律师事务所证明图片 /// /// /// /// - [HttpPost] - [Route("EditLawyerDepartmentPhoto")] - public async Task EditLawyerDepartmentPhoto(EditLawyerInput input) - { - try - { - _db.BeginTran(); - var userlist = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.Id ==input.lawyerid).ToListAsync(); - userlist.ForEach(q => - { - //头像地址 - q.departmentPhoto = input.photo.ConvertToJsonStr(); - }); - var num = await _db.Updateable(userlist).ExecuteCommandAsync(); - _db.CommitTran(); - if (num > 0) - { - result.IsSucceed = true; - result.result = "替换成功"; - } - } - catch (System.Exception ex) - { - _db.RollbackTran(); - result.IsSucceed = false; - result.Message = ex.Message; - LogService.WriteLog(ex, "用户部门证件替换"); - } - _logs.WriteSysLogadd("用户管理", "用户部门证件替换", result, _db); - return result; - } + //[HttpPost] + //[Route("EditLawyerDepartmentPhoto")] + //public async Task EditLawyerDepartmentPhoto(EditLawyerInput input) + //{ + // try + // { + // _db.BeginTran(); + // var userlist = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.Id ==input.lawyerid).ToListAsync(); + // userlist.ForEach(q => + // { + // //头像地址 + // q.departmentPhoto = input.photo.ConvertToJsonStr(); + // }); + // var num = await _db.Updateable(userlist).ExecuteCommandAsync(); + // _db.CommitTran(); + // if (num > 0) + // { + // result.IsSucceed = true; + // result.result = "替换成功"; + // } + // } + // catch (System.Exception ex) + // { + // _db.RollbackTran(); + // result.IsSucceed = false; + // result.Message = ex.Message; + // LogService.WriteLog(ex, "用户部门证件替换"); + // } + // _logs.WriteSysLogadd("用户管理", "用户部门证件替换", result, _db); + // return result; + //} public class EditLawyerInput { public string[] photo { get; set; } @@ -783,8 +783,28 @@ namespace _24Hour.Controllers.system { _db.BeginTran(); var userlist = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.Id ==input.lawyerid).ToListAsync(); + + var deleteOldData = (string? jsonpath) => + { + if (string.IsNullOrEmpty(jsonpath)) + { + return; + } + var photos = jsonpath.ConvertToModel>() ?? new List(); + foreach (var photo in photos.Where(x => x != null)) + { + var urlpath = photo.Split('/'); + var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); + if (System.IO.File.Exists(filepath)) + { + System.IO.File.Delete(filepath); + } + } + }; userlist.ForEach(q => { + deleteOldData(q.identityphoto); + //头像地址 q.identityphoto =input.photo.ConvertToJsonStr(); }); @@ -818,7 +838,26 @@ namespace _24Hour.Controllers.system try { _db.BeginTran(); - var userlist = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.Id == _userdata.Id).ToListAsync(); + var userlist = await _db.Queryable().Where(q => q.IsDeleted == 0 && q.Id == _userdata.Id).ToListAsync(); + + var deleteOldData = (string? jsonpath) => + { + if (string.IsNullOrEmpty(jsonpath)) + { + return; + } + var photos = jsonpath.ConvertToModel>() ?? new List(); + foreach (var photo in photos.Where(x => x != null)) + { + var urlpath = photo.Split('/'); + var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); + if (System.IO.File.Exists(filepath)) + { + System.IO.File.Delete(filepath); + } + } + }; + userlist.ForEach(q => { //头像地址 diff --git a/24Hour/Program.cs b/24Hour/Program.cs index 7d64b52..c977797 100644 --- a/24Hour/Program.cs +++ b/24Hour/Program.cs @@ -22,6 +22,7 @@ using Elight.Entity; using _24Hour; using Microsoft.Extensions.DependencyInjection; using _24Hour.Filter; +using Elight.Utility.Encrypt; #region builder @@ -200,19 +201,15 @@ builder.Services.AddHttpClient(opt => opt.BaseAddress = new Uri(Configuration.GetSection("CaseTwenty:SysAddress").Value); }); -var mysqlconnstr = Configuration.GetSection("CaseTwenty:SysAddress").Value; -var BaseAddress = Configuration.GetSection("ConnectionStrings:MySQLConnString").Value; -Console.WriteLine($"Mysql Connstring : {mysqlconnstr}"); -Console.WriteLine($"Mysql Connstring : {BaseAddress}"); - //builder.Services.AddAuthorization(); builder.Services.AddHttpContextAccessor(); builder.Services.AddScoped(); builder.Services.TryAddSingleton(); builder.Services.TryAddSingleton(); //WriteSysLog builder.Services.AddScoped(sp => -{ - var connectionString = Configuration.GetSection("ConnectionStrings:MySQLConnString").Value; +{ + var config = Configuration.GetSection("ConnectionStrings:MySQLConnString").Value; + var connectionString = AES.Decrypt(config); var db = new SqlSugarClient(new ConnectionConfig { ConnectionString = connectionString, diff --git a/24Hour/TwentySystemProxyClient.cs b/24Hour/TwentySystemProxyClient.cs index ab6d5ef..a487c60 100644 --- a/24Hour/TwentySystemProxyClient.cs +++ b/24Hour/TwentySystemProxyClient.cs @@ -228,7 +228,7 @@ namespace _24Hour casename = casename ?? "", bmsah = bmsah ?? "", dwbm = dwbm ?? "", - starttime = starttime ?? DateTime.Now.AddDays(-100), + starttime = starttime ?? DateTime.Now.AddDays(-180), endtime = endtime ?? DateTime.Now, page, size diff --git a/24Hour/WechatMessagerClient.cs b/24Hour/WechatMessagerClient.cs index b559baf..98496df 100644 --- a/24Hour/WechatMessagerClient.cs +++ b/24Hour/WechatMessagerClient.cs @@ -2,6 +2,7 @@ using com.sun.xml.@internal.xsom; using Elight.Utility; using Elight.Utility.Code; +using Elight.Utility.Encrypt; using Elight.Utility.Extensions; using java.lang.annotation; using java.util; @@ -9,6 +10,7 @@ using Microsoft.IdentityModel.Logging; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System.Runtime.Caching; +using System.Security.Cryptography; using static java.security.cert.CertPathValidatorException; namespace _24Hour @@ -19,31 +21,34 @@ namespace _24Hour private readonly HttpClient httpCliet; // 实例化MemoryCache对象 MemoryCache cache = MemoryCache.Default; - private readonly IConfiguration _configuration; /// /// 小程序AppID /// - private string appid = "wx48108a0c98a3dab0"; + private string appid; /// /// 小程序AppID /// - private string secret = "wx48108a0c98a3dab0"; + private string secret; /// /// 微信公众号AppID /// - private string Gzhappid = "wx48108a0c98a3dab0"; + private string Gzhappid; /// /// 微信公众号密码 /// - private string Gzhsecret = "wx48108a0c98a3dab0"; + private string Gzhsecret; /// /// 微信公众号模板Id /// - private string GzhtemplateId = "wx48108a0c98a3dab0"; + private string GzhtemplateId; /// /// 小程序secretID /// - private string secid = "e752e4fba67526eca21313a18c96a58f"; + private string secid; + + private string miniprogram_state; + private string GzhTemplateId1; + private string GzhTemplateId2; private string TemplateIdSuccess { get; set; } = ""; private string TemplateIdFail { get; set; } = ""; private readonly ILogger logger; @@ -54,17 +59,19 @@ namespace _24Hour httpCliet.DefaultRequestHeaders.Add("Accept", "application/json"); httpCliet.DefaultRequestHeaders.Add("User-Agent", "HttpClientFactory-Sample"); httpCliet.DefaultRequestHeaders.ConnectionClose = true; - _configuration = configuration; - appid = $"{configuration.GetSection("Wechat:appid").Value}"; - secret = $"{configuration.GetSection("Wechat:secret").Value}"; - secid = $"{configuration.GetSection("Wechat:secid").Value}"; - Gzhappid = $"{configuration.GetSection("WechatGzh:appid").Value}"; - Gzhsecret = $"{configuration.GetSection("WechatGzh:secret").Value}"; - GzhtemplateId = $"{configuration.GetSection("WechatGzh:templateId").Value}"; - TemplateIdSuccess = $"{configuration.GetSection("Wechat:templateIdSuccess").Value}"; - TemplateIdFail = $"{configuration.GetSection("Wechat:templateIdFail").Value}"; - TemplateIdFail = $"{configuration.GetSection("Wechat:templateIdFail").Value}"; + + appid =AES.Decrypt( $"{configuration.GetSection("Wechat:appid").Value}"); + secret = AES.Decrypt($"{configuration.GetSection("Wechat:secret").Value}"); + secid = AES.Decrypt($"{configuration.GetSection("Wechat:secid").Value}"); + Gzhappid = AES.Decrypt($"{configuration.GetSection("WechatGzh:appid").Value}"); + Gzhsecret = AES.Decrypt($"{configuration.GetSection("WechatGzh:secret").Value}"); + GzhtemplateId = AES.Decrypt($"{configuration.GetSection("WechatGzh:templateId").Value}"); + TemplateIdSuccess = AES.Decrypt($"{configuration.GetSection("Wechat:templateIdSuccess").Value}"); + TemplateIdFail = AES.Decrypt($"{configuration.GetSection("Wechat:templateIdFail").Value}"); + GzhTemplateId1 = AES.Decrypt($"{configuration.GetSection("WechatGzh:templateId1").Value}"); + GzhTemplateId2 = AES.Decrypt($"{configuration.GetSection("WechatGzh:templateId2").Value}"); + miniprogram_state = $"{configuration.GetSection("Wechat:miniprogram_state").Value}"; } //小程序获取openId public async Task GetOpenId(string code) @@ -165,9 +172,9 @@ namespace _24Hour { touser = useropenId, //兼容北关区模板id,那边的配置文件没有模板id的字段 - template_id = string.IsNullOrEmpty(TemplateIdSuccess) ? "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY" : TemplateIdSuccess, + template_id = TemplateIdSuccess, page = "pages/selfService/reception/reception", - miniprogram_state = $"{_configuration.GetSection("Wechat:miniprogram_state").Value}", + miniprogram_state = miniprogram_state, lang = "zh_CN", data = new { @@ -238,10 +245,9 @@ namespace _24Hour msg = new { touser = useropenId, - //兼容北关区模板id,那边的配置文件没有模板id的字段 - template_id = string.IsNullOrEmpty(TemplateIdFail) ? "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ" : TemplateIdFail, + template_id = TemplateIdFail, page = "pages/selfService/reception/reception", - miniprogram_state = $"{_configuration.GetSection("Wechat:miniprogram_state").Value}", + miniprogram_state = miniprogram_state, lang = "zh_CN", data = new { @@ -388,7 +394,7 @@ namespace _24Hour msg = new { touser = useropenId, - template_id = $"{_configuration.GetSection("WechatGzh:templateId1").Value}", + template_id = GzhTemplateId1, //miniprogram =new{ // appid= appid, // pagepath= "pages/selfService/reception/reception" @@ -466,7 +472,7 @@ namespace _24Hour msg = new { touser = useropenId, - template_id = $"{_configuration.GetSection("WechatGzh:templateId2").Value}", + template_id = GzhTemplateId2, //miniprogram =new{ // appid= appid, // pagepath= "pages/selfService/reception/reception" diff --git a/24Hour/appsettings.json b/24Hour/appsettings.json index c84ff18..df4852f 100644 --- a/24Hour/appsettings.json +++ b/24Hour/appsettings.json @@ -52,24 +52,85 @@ //"miniprogram_state": "trial", //"templateIdSuccess": "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY", //"templateIdFail": "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ" + + //北关 + //北关小程序 + //"appid": "wxdf1bb4a9a6331665", + //"secret": "4a19512fbbc4c4658fdffcdbfa1fc8f4", + //"secid": "4a19512fbbc4c4658fdffcdbfa1fc8f4", + //"miniprogram_state": "trial", + //"templateIdSuccess": "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY", + //"templateIdFail": "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ", + //北关小程序加密 + //"appid": "oVOrWaNhXsGehydieMo8c1Wlc100QHmc1uaQqOh6lGI=", + //"secret": "MFcJJDAw0DylG1WFupTiv3jaRbEm3I6z2fZYnqXdcjxBmKtAgUh8ITocgrxAStfI", + //"secid": "MFcJJDAw0DylG1WFupTiv3jaRbEm3I6z2fZYnqXdcjxBmKtAgUh8ITocgrxAStfI", + //"miniprogram_state": "trial", + //"templateIdSuccess": "74zzGqnjFmJMyRX0unBjHW9CEma7/MS1QZLM0B8SAvhG8iehpigfPX+ECNe296hT", + //"templateIdFail": "MqJDCLQDp/aXYygOFlZeaaDZX/joZCuoOQCh2x7Mc4lGSfADKWP4mJJXSFTeG0D2", + //北关 - "appid": "wxdf1bb4a9a6331665", - "secret": "4a19512fbbc4c4658fdffcdbfa1fc8f4", - "secid": "4a19512fbbc4c4658fdffcdbfa1fc8f4", + + //公司 + //公司测试加密 + "appid": "G72DqIT+Qwa6Rxwkk5RnxeV11XTGa4pztVUnz0R6WGc=", + "secret": "AnMEKbz0Yf7fyJYPFIvp7uL2SVP8Ls5fJb3lLKwLiJFBmKtAgUh8ITocgrxAStfI", + "secid": "AnMEKbz0Yf7fyJYPFIvp7uL2SVP8Ls5fJb3lLKwLiJFBmKtAgUh8ITocgrxAStfI", "miniprogram_state": "trial", - "templateIdSuccess": "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY", - "templateIdFail": "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ" + "templateIdSuccess": "74zzGqnjFmJMyRX0unBjHW9CEma7/MS1QZLM0B8SAvhG8iehpigfPX+ECNe296hT", + "templateIdFail": "MqJDCLQDp/aXYygOFlZeaaDZX/joZCuoOQCh2x7Mc4lGSfADKWP4mJJXSFTeG0D2" + //公司测试 + //"appid": "wx2673e6515c83973a", + //"secret": "fd408c161a09e5ff1c59165dfd0434df", + //"secid": "fd408c161a09e5ff1c59165dfd0434df", + //"miniprogram_state": "trial", + //"templateIdSuccess": "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY", + //"templateIdFail": "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ" + //公司 + + }, "WechatGzh": { + //公司 //公司微信公众号 //"appid": "wx1f5c662edbe3b627", //"secret": "a892658a8d21f4e97cbb1ec1880b78fd", //"templateId": "SmCAFFqHSnGC4FnRBFgkmuBvTBWkPnWi4zkjshrpz_8", + //公司微信公众号加密 + //"appid": "g+AHBYf5Wfd+NUU/N500tlJr21BeI/WfCWMGs7z23fs=", + //"secret": "HvGLrth4Id7Dp9KCeqhHn4Yt58Zcpz3rntg7tL9PeGRBmKtAgUh8ITocgrxAStfI", + //"templateId": "QauTKHvz3cQPHSt6nPSXGFyjeEyT9p22gIBVyECrszHXZrNqU3tZnb2+il8gSXmA", + //公司 + + //北关 + //北关微信公众号加密版 + "appid": "RECYZUdJHpWAwXo08m/QJuIjHfS6q5UrCJz+IgmywFY=", + "secret": "e51ZCctUQowt/VJgla/AwbYI4iPcu7yy7YphDTylwYJBmKtAgUh8ITocgrxAStfI", + "templateId": "Kmo3TKZfOrGe95+NVto2SmH93A0x1DgjtVjBIy3I3o46tood38KiDHqI61CAk382", + //律师注册审核消息提醒 + "templateId1": "cCIkyiWffdAJEX4QQyxsmdaPt-JKib5I4rhCflwcebU", + //律师注册审核结果提醒 + "templateId2": "68FkacsufQ5klTZTM4qFcZHfQrsDrAQeiu6R0Chb6B8" //北关微信公众号 - "appid": "wx3a65effe2f8808c3", - "secret": "e645ec6643cd844ac1129b2eb7680477", - "templateId": "cwSTQjLRh-xhnpz41jGlPxMty_EOJBlyjuBNGEP6FyU" + //"appid": "wx3a65effe2f8808c3", + //"secret": "e645ec6643cd844ac1129b2eb7680477", + //"templateId": "cwSTQjLRh-xhnpz41jGlPxMty_EOJBlyjuBNGEP6FyU" + //"templateId": "cwSTQjLRh-xhnpz41jGlPxMty_EOJBlyjuBNGEP6FyU" + //"templateId2": "cwSTQjLRh-byAZoJ5yt3ieIUiWBZSdrT/oObHO49dLftjvsdGW3Gvsf/uTC5f0SvFU2mhrq9QQ" + //北关 + + //赞皇 + //赞皇微信公众号加密 + //"appid": "SEgCQ5R6WH9aLMnK9l3qaCqwlZ9bhbIwAlWo4KrA2pM=", + //"secret": "4TasYt254i7PivEWlbj+XJlx5PL1NaWeKB+VfF9LX3lBmKtAgUh8ITocgrxAStfI", + //预约消息提醒 + //"templateId": "zz0e8ZoMyS/8Ql6A9AsaZbrPX5DIY5XFJiPRYF5khc9F8XUR4khnkLP2F70pxFFt" + //律师注册审核消息提醒 + //"templateId1": "qahnV2kjkI5vaLkcUpqusCYJHw+oXHD2kyLgDkuvTY+u6dvEKpLWFZcKSNw8fg93" + //律师注册审核结果提醒 + //"templateId2": "a+Q/iKE1t0zUqPcMr53i5HH6iFb3taN57DALh667ET2LZoXp4NPg6IS5M0BqfLXI" + //赞皇微信公众号 //"appid": "wxe06040af55282ee8", //"secret": "8ffcdb30277eba9f4861f39a66990237", @@ -79,6 +140,7 @@ //"templateId1": "cCIkyiWffdAJEX4QQyxsmdaPt-JKib5I4rhCflwcebU" //律师注册审核结果提醒 //"templateId2": "68FkacsufQ5klTZTM4qFcZHfQrsDrAQeiu6R0Chb6B8" + //赞皇 }, "CaseTwenty": { "SysAddress": "http://127.0.0.1:5194", diff --git a/24Hour/build/dockerbuild.txt b/24Hour/build/dockerbuild.txt index 9bcb86b..fefdd26 100644 --- a/24Hour/build/dockerbuild.txt +++ b/24Hour/build/dockerbuild.txt @@ -1,6 +1,6 @@ create images -docker build -t twentyfoursvc:1.0.2.4 . -docker save -o d://twentyfoursvc.1.0.2.5.tar twentyfoursvc:1.0.2.5 +docker build -t twentyfoursvc:1.0.3.11 . +docker save -o d://twentyfoursvc.1.0.3.11.tar twentyfoursvc:1.0.3.11 docker on windows for fake data create container docker run --name twentyfoursvc -p 8098:8098 -v D://dockerconfigs/24hourconfig/appsettings.json:/app/appsettings.json -v /etc/localtime:/etc/localtime -d twentyfoursvc:1.0.1.5 @@ -12,7 +12,7 @@ docker network create -d bridge twentytotwneyfour for 24hourserver docker run \ ---name twentyfoursvc1.0.2.5 \ +--name twentyfoursvc1.0.3.11 \ -p 8098:8098 \ -v /home/24hour/logs:/app/logs \ -v /home/24hour/wwwroot:/app/wwwroot \ @@ -22,7 +22,7 @@ docker run \ --link mysql \ --network twentytotwneyfour \ --network-alias twentyfour \ --d twentyfoursvc:1.0.2.5 +-d twentyfoursvc:1.0.3.11 @@ -30,19 +30,33 @@ docker run --name twentyfoursvc1.0.2.3 -d twentyfoursvc:1.0.2.3 +公司252测试 - +docker build -t twentyfoursvc:1.0.3.10 . docker load -i twentyfoursvc1019.tar -docker run --name twentyfoursvc1.0.2.2 \ + +内网运行 +docker run --name twentyfoursvc_1.0.3.10_private \ -p 8098:8098 \ --v /home/24hour/config/appsettings.json:/app/appsettings.json \ --v /home/24hour/config/log4net.config:/app/log4net.config \ --v /home/24hour/wwwroot:/app/wwwroot \ --v /home/24hour/logs:/app/logs \ +-v /home/24hour/private/config/appsettings.json:/app/appsettings.json \ +-v /home/24hour/private/config/log4net.config:/app/log4net.config \ +-v /home/24hour/private/config/caselist.txt:/app/caselist.txt \ +-v /home/24hour/private/config/jzlist.txt:/app/jzlist.txt \ +-v /home/24hour/private/wwwroot:/app/wwwroot \ +-v /home/24hour/private/logs:/app/logs \ -v /etc/localtime:/etc/localtime \ ---restart=always -d twentyfoursvc:1.0.2.2 - +--restart=always -d twentyfoursvc:1.0.3.10 + +外网运行 +docker run --name twentyfoursvc_1.0.3.10_network \ +-p 18098:18098 \ +-v /home/24hour/network/config/appsettings.json:/app/appsettings.json \ +-v /home/24hour/network/config/log4net.config:/app/log4net.config \ +-v /home/24hour/network/wwwroot:/app/wwwroot \ +-v /home/24hour/network/logs:/app/logs \ +-v /etc/localtime:/etc/localtime \ +--restart=always -d twentyfoursvc:1.0.3.10 @@ -190,7 +204,7 @@ for 2.0 proxyclient docker run --name twentysysproxy.1.0.1.5 -p 5194:5194 -v /home/twentysysproxy/config/appsettings.json:/app/appsettings.json -v /etc/localtime:/etc/localtime --restart=always --link mysql --network twentytotwneyfour --network-alias twentyproxy -d twentysysproxy:1.0.1.5 - +docker save -o d://twentysysproxy.1.0.1.6.tar twentysysproxy:1.0.1.6 diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230613/10.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230613/10.log deleted file mode 100644 index f29ef04..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230613/10.log +++ /dev/null @@ -1,12 +0,0 @@ -日志时间:2023-06-13 10:49:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/13 10:49:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Unknown column 'SerialNumber' in 'field list' -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in C:\Users\Administrator\Desktop\24Hour\Elight.Logic\WriteSysLog.cs:line 51 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230614/16.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230614/16.log deleted file mode 100644 index cf0cfac..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230614/16.log +++ /dev/null @@ -1,12 +0,0 @@ -日志时间:2023-06-14 16:50:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/14 16:50:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Unknown column 'SerialNumber' in 'field list' -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 51 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230614/17.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230614/17.log deleted file mode 100644 index 78a1e40..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230614/17.log +++ /dev/null @@ -1,72 +0,0 @@ -日志时间:2023-06-14 17:05:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/14 17:05:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Unknown column 'SerialNumber' in 'field list' -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 51 -************************Exception End************************************ - -日志时间:2023-06-14 17:10:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/14 17:10:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Unknown column 'SerialNumber' in 'field list' -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 51 -************************Exception End************************************ - -日志时间:2023-06-14 17:11:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/14 17:11:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Unknown column 'SerialNumber' in 'field list' -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 51 -************************Exception End************************************ - -日志时间:2023-06-14 17:31:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/14 17:31:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Unknown column 'SerialNumber' in 'field list' -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 51 -************************Exception End************************************ - -日志时间:2023-06-14 17:36:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/14 17:36:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Unknown column 'SerialNumber' in 'field list' -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 51 -************************Exception End************************************ - -日志时间:2023-06-14 17:52:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/14 17:52:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Unknown column 'SerialNumber' in 'field list' -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 51 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/09.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/09.log deleted file mode 100644 index 79edc5e..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/09.log +++ /dev/null @@ -1,24 +0,0 @@ -日志时间:2023-06-15 09:21:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/15 9:21:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Unknown column 'SerialNumber' in 'field list' -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 51 -************************Exception End************************************ - -日志时间:2023-06-15 09:22:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/15 9:22:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Unknown column 'SerialNumber' in 'field list' -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 51 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/18.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/18.log deleted file mode 100644 index e688d5f..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/18.log +++ /dev/null @@ -1,36 +0,0 @@ -日志时间:2023-06-15 18:17:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/15 18:17:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-15 18:18:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/15 18:18:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-15 18:47:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/15 18:47:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/19.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/19.log deleted file mode 100644 index 5c4ccd4..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/19.log +++ /dev/null @@ -1,12 +0,0 @@ -日志时间:2023-06-15 19:33:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/15 19:33:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230616/14.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230616/14.log deleted file mode 100644 index b0c9015..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230616/14.log +++ /dev/null @@ -1,36 +0,0 @@ -日志时间:2023-06-16 14:50:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/16 14:50:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-16 14:51:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/16 14:51:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-16 14:52:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/16 14:52:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230616/15.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230616/15.log deleted file mode 100644 index f3ae4eb..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230616/15.log +++ /dev/null @@ -1,65 +0,0 @@ -日志时间:2023-06-16 15:05:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/16 15:05:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-16 15:11:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/16 15:11:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-16 15:12:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/16 15:12:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-16 15:38:09 -************************Exception Start******************************** -Exception Remark:菜单分页查询 -Exception Date:2023/6/16 15:38:09 -Exception Type:SqlSugar.SqlSugarException -Exception Message:中文提示 : Select 实体与表映射出错,可以注释实体类中的字段排查具体哪一个字段。【注意:如果用CodeFirt先配置禁止删列或更新】 Common Language Runtime detected an invalid program. -English Message : Entity mapping error.Common Language Runtime detected an invalid program. -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.Check.Exception(Boolean isException, String message, String[] args) - at SqlSugar.DbBindAccessory.GetEntityListAsync[T](SqlSugarProvider context, IDataReader dataReader) - at SqlSugar.DbBindProvider.DataReaderToListAsync[T](Type type, IDataReader dataReader) - at SqlSugar.QueryableProvider`1.GetDataAsync[TResult](Boolean isComplexModel, Type entityType, IDataReader dataReader) - at SqlSugar.QueryableProvider`1.GetDataAsync[TResult](KeyValuePair`2 sqlObj) - at SqlSugar.QueryableProvider`1._ToListAsync[TResult]() - at _24Hour.Controllers.system.SystemControllerController.QueryMenupage(App_Sys_MenuInput Menudata) in E:\Code\24Hour.Service\24Hour\Controllers\system\SystemControllerController.cs:line 871 -************************Exception End************************************ - -日志时间:2023-06-16 15:41:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/16 15:41:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/15.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/15.log deleted file mode 100644 index ba20581..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/15.log +++ /dev/null @@ -1,108 +0,0 @@ -日志时间:2023-06-19 15:32:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 15:32:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-19 15:33:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 15:33:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-19 15:33:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 15:33:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-19 15:34:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 15:34:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-19 15:34:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 15:34:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-19 15:46:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 15:46:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-19 15:49:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 15:49:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-19 15:59:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 15:59:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-19 15:59:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 15:59:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/17.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/17.log deleted file mode 100644 index de601b3..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/17.log +++ /dev/null @@ -1,12 +0,0 @@ -日志时间:2023-06-19 17:01:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 17:01:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/18.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/18.log deleted file mode 100644 index 6c2301b..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/18.log +++ /dev/null @@ -1,46 +0,0 @@ -日志时间:2023-06-19 18:21:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 18:21:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-19 18:22:43 -************************Exception Start******************************** -Exception Remark:修改律师服务预约办理人 -Exception Date:2023/6/19 18:22:43 -Exception Type:System.NullReferenceException -Exception Message:Object reference not set to an instance of an object. -Exception Source:24Hour -Exception StackTrace: at _24Hour.Controllers.Common.CommonController.Updateuser(String Id, String userId, String username) in E:\Code\24Hour.Service\24Hour\Controllers\Common\CommonController.cs:line 481 -************************Exception End************************************ - -日志时间:2023-06-19 18:22:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 18:22:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-19 18:27:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 18:27:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/20.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/20.log deleted file mode 100644 index 5045001..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/20.log +++ /dev/null @@ -1,12 +0,0 @@ -日志时间:2023-06-19 20:49:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/19 20:49:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/13.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/13.log deleted file mode 100644 index 57a9ad2..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/13.log +++ /dev/null @@ -1,36 +0,0 @@ -日志时间:2023-06-20 13:53:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 13:53:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-20 13:53:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 13:53:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-20 13:56:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 13:56:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/14.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/14.log deleted file mode 100644 index 2f87f02..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/14.log +++ /dev/null @@ -1,12 +0,0 @@ -日志时间:2023-06-20 14:16:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 14:16:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/15.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/15.log deleted file mode 100644 index 6a3d741..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/15.log +++ /dev/null @@ -1,60 +0,0 @@ -日志时间:2023-06-20 15:00:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 15:00:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-20 15:02:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 15:02:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-20 15:03:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 15:03:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-20 15:11:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 15:11:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-20 15:23:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 15:23:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/17.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/17.log deleted file mode 100644 index f7cf3e4..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/17.log +++ /dev/null @@ -1,36 +0,0 @@ -日志时间:2023-06-20 17:27:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 17:27:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-20 17:38:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 17:38:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-20 17:38:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 17:38:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/20.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/20.log deleted file mode 100644 index 776b862..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/20.log +++ /dev/null @@ -1,12 +0,0 @@ -日志时间:2023-06-20 20:23:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/20 20:23:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230621/11.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230621/11.log deleted file mode 100644 index bbef12c..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230621/11.log +++ /dev/null @@ -1,12 +0,0 @@ -日志时间:2023-06-21 11:44:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/21 11:44:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230621/14.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230621/14.log deleted file mode 100644 index 2b93a66..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230621/14.log +++ /dev/null @@ -1,60 +0,0 @@ -日志时间:2023-06-21 14:45:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/21 14:45:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-21 14:48:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/21 14:48:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-21 14:48:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/21 14:48:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-21 14:51:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/21 14:51:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-21 14:51:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/21 14:51:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/09.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/09.log deleted file mode 100644 index b278bf0..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/09.log +++ /dev/null @@ -1,228 +0,0 @@ -日志时间:2023-06-25 09:46:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:46:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:46:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:46:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:47:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:47:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:48:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:48:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:49:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:49:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:49:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:49:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:49:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:49:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:50:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:50:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:51:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:51:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:51:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:51:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:52:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:52:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:57:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:57:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:57:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:57:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:58:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:58:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:58:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:58:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:58:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:58:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:58:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:58:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:58:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:58:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 09:58:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 9:58:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/10.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/10.log deleted file mode 100644 index 798a1b2..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/10.log +++ /dev/null @@ -1,696 +0,0 @@ -日志时间:2023-06-25 10:00:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:00:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:01:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:01:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:01:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:01:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:02:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:02:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:02:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:02:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:02:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:02:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:02:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:02:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:02:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:02:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:02:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:02:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:02:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:02:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:04:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:04:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:04:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:04:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:04:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:04:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:05:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:05:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:06:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:06:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:10:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:10:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:12:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:12:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:13:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:13:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:13:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:13:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:13:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:13:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:14:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:14:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:14:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:14:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:16:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:16:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:17:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:17:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:17:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:17:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:17:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:17:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:20:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:20:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:20:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:20:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:27:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:27:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:27:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:27:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:27:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:27:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:27:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:27:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:30:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:30:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:31:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:31:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:31:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:31:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:31:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:31:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:31:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:31:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:32:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:32:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:36:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:36:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:37:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:37:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:37:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:37:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:37:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:37:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:38:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:38:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:38:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:38:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:39:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:39:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:39:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:39:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:41:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:41:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:46:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:46:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:46:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:46:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:46:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:46:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:46:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:46:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:51:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:51:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:52:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:52:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:54:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:54:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:54:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:54:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:55:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:55:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:56:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:56:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 10:56:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 10:56:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/11.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/11.log deleted file mode 100644 index bbf1218..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/11.log +++ /dev/null @@ -1,1284 +0,0 @@ -日志时间:2023-06-25 11:00:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:00:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:00:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:00:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:00:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:00:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:00:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:00:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:01:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:01:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:01:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:01:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:03:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:03:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:03:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:03:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:03:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:03:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:04:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:04:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:04:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:04:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:05:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:05:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:05:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:05:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:08:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:08:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:08:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:08:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:09:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:09:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:09:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:09:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:10:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:10:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:10:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:10:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:10:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:10:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:11:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:11:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:11:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:11:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:11:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:11:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:11:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:11:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:13:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:13:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:13:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:13:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:13:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:13:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:13:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:13:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:14:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:14:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:14:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:14:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:14:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:14:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:14:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:14:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:14:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:14:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:15:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:15:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:16:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:16:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:16:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:16:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:16:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:16:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:16:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:16:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:17:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:17:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:19:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:19:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:23:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:23:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:23:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:23:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:23:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:23:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:23:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:23:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:23:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:23:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:24:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:24:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:24:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:24:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:24:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:24:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:24:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:24:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:24:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:24:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:25:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:25:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:25:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:25:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:25:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:25:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:32:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:32:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:32:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:32:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:32:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:32:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:33:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:33:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:33:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:33:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:33:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:33:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:33:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:33:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:33:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:33:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:38:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:38:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:38:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:38:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:39:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:39:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:40:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:40:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:40:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:40:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:40:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:40:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:40:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:40:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:40:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:40:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:40:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:40:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:41:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:41:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:42:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:42:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:45:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:45:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:45:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:45:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:45:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:45:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:45:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:45:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:45:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:45:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:50:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:50:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:50:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:50:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:50:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:50:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:50:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:50:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:51:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:51:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:51:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:51:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:51:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:51:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:51:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:51:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:52:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:52:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:52:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:52:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:53:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:53:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:53:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:53:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:57:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:57:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:57:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:57:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:58:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:58:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 11:59:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 11:59:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/12.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/12.log deleted file mode 100644 index 6c88979..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/12.log +++ /dev/null @@ -1,12 +0,0 @@ -日志时间:2023-06-25 12:00:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 12:00:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/13.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/13.log deleted file mode 100644 index f88df8f..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/13.log +++ /dev/null @@ -1,228 +0,0 @@ -日志时间:2023-06-25 13:36:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:36:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:41:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:41:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:41:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:41:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:41:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:41:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:42:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:42:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:43:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:43:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:43:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:43:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:43:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:43:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:44:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:44:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:47:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:47:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:47:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:47:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:51:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:51:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:51:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:51:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:51:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:51:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:51:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:51:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:51:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:51:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:58:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:58:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:58:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:58:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 13:58:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 13:58:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/14.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/14.log deleted file mode 100644 index 265508a..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/14.log +++ /dev/null @@ -1,1344 +0,0 @@ -日志时间:2023-06-25 14:04:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:04:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:05:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:05:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:05:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:05:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:05:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:05:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:05:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:05:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:05:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:05:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:06:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:06:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:06:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:06:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:11:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:11:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:11:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:11:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:11:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:11:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:14:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:14:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:19:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:19:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:19:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:19:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:20:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:20:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:20:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:20:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:20:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:20:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:20:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:20:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:20:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:20:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:24:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:24:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:24:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:24:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:24:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:24:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:24:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:24:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:24:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:24:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:26:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:26:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:26:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:26:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:26:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:26:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:26:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:26:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:26:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:26:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:27:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:27:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:28:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:28:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:29:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:29:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:29:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:29:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:29:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:29:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:30:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:30:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:30:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:30:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:30:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:30:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:30:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:30:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:30:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:30:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:30:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:30:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:30:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:30:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:30:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:30:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:30:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:30:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:31:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:31:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:31:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:31:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:31:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:31:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:31:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:31:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:31:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:31:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:31:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:31:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:31:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:31:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:31:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:31:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:31:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:31:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:32:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:32:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:33:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:33:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:33:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:33:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:35:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:35:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:36:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:36:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:36:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:36:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:37:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:37:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:37:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:37:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:39:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:39:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:41:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:41:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:42:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:42:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:43:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:43:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:43:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:43:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:43:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:43:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:43:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:43:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:43:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:43:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:43:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:43:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:46:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:46:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:46:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:46:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:47:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:47:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:47:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:47:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:50:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:50:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:50:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:50:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:50:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:50:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:50:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:50:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:51:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:51:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:51:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:51:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:51:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:51:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:51:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:51:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:51:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:51:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:52:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:52:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:52:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:52:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:52:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:52:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:52:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:52:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:52:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:52:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:54:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:54:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:56:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:56:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:56:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:56:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:56:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:56:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:56:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:56:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:56:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:56:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:56:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:56:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:57:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:57:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:57:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:57:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:57:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:57:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:58:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:58:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:58:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:58:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:58:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:58:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:59:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:59:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 14:59:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 14:59:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/15.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/15.log deleted file mode 100644 index fee49b4..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/15.log +++ /dev/null @@ -1,1212 +0,0 @@ -日志时间:2023-06-25 15:00:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:00:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:00:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:00:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:01:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:01:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:01:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:01:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:01:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:01:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:02:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:02:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:02:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:02:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:02:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:02:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:02:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:02:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:02:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:02:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:03:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:03:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:03:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:03:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:03:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:03:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:03:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:03:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:03:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:03:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:03:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:03:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:03:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:03:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:03:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:03:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:04:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:04:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:04:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:04:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:05:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:05:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:05:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:05:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:05:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:05:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:11:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:11:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:12:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:12:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:21:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:21:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:21:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:21:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:21:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:21:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:24:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:24:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:24:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:24:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:25:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:25:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:25:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:25:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:25:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:25:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:27:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:27:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:27:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:27:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:28:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:28:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:28:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:28:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:28:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:28:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:28:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:28:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:38:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:38:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:38:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:38:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:38:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:38:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:38:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:38:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:38:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:38:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:38:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:38:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:38:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:38:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:39:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:39:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:39:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:39:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:40:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:40:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:40:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:40:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:40:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:40:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:41:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:41:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:41:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:41:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:41:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:41:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:41:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:41:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:41:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:41:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:41:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:41:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:42:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:42:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:42:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:42:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:42:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:42:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:42:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:42:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:43:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:43:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:44:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:44:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:44:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:44:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:44:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:44:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:44:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:44:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:44:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:44:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:44:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:44:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:44:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:44:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:46:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:46:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:49:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:49:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:49:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:49:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:49:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:49:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:49:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:49:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:49:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:49:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:49:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:49:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:49:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:49:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:50:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:50:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:51:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:51:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:51:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:51:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:54:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:54:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:55:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:55:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:55:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:55:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:55:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:55:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:55:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:55:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:57:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:57:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:57:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:57:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 15:58:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 15:58:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/16.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/16.log deleted file mode 100644 index d78c261..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/16.log +++ /dev/null @@ -1,1500 +0,0 @@ -日志时间:2023-06-25 16:01:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:01:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:01:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:01:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:01:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:01:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:01:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:01:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:02:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:02:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:02:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:02:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:03:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:03:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:03:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:03:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:05:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:05:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:06:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:06:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:06:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:06:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:06:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:06:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:07:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:07:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:07:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:07:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:07:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:07:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:07:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:07:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:13:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:13:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:16:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:16:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:17:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:17:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:18:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:18:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:18:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:18:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:18:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:18:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:18:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:18:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:18:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:18:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:19:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:19:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:20:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:20:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:20:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:20:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:20:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:20:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:20:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:20:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:20:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:20:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:20:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:20:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:21:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:21:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:21:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:21:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:22:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:22:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:24:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:24:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:24:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:24:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:25:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:25:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:26:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:26:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:26:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:26:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:26:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:26:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:26:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:26:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:26:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:26:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:27:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:27:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:27:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:27:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:27:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:27:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:27:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:27:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:31:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:31:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:31:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:31:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:32:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:32:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:32:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:32:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:32:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:32:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:35:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:35:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:36:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:36:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:38:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:38:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:38:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:38:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:38:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:38:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:38:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:38:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:38:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:38:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:38:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:38:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:42:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:42:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:42:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:42:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:46:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:46:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:46:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:46:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:47:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:47:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:48:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:48:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:48:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:48:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:48:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:48:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:49:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:49:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:49:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:49:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:49:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:49:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:49:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:49:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:49:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:49:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:49:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:49:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:50:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:50:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:50:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:50:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:50:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:50:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:50:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:50:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:51:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:51:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:51:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:51:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:51:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:51:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:53:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:53:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:53:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:53:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:54:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:54:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:55:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:55:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:55:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:55:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:57:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:57:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 16:58:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 16:58:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/17.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/17.log deleted file mode 100644 index aece19a..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/17.log +++ /dev/null @@ -1,1128 +0,0 @@ -日志时间:2023-06-25 17:03:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:03:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:03:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:03:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:03:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:03:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:04:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:04:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:04:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:04:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:05:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:05:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:05:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:05:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:06:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:06:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:06:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:06:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:07:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:07:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:07:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:07:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:07:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:07:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:07:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:07:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:07:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:07:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:07:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:07:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:08:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:08:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:08:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:08:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:08:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:08:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:08:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:08:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:08:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:08:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:09:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:09:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:10:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:10:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:10:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:10:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:10:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:10:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:10:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:10:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:11:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:11:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:11:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:11:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:12:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:12:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:12:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:12:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:12:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:12:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:15:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:15:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:15:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:15:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:16:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:16:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:16:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:16:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:16:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:16:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:18:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:18:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:18:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:18:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:19:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:19:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:19:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:19:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:19:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:19:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:20:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:20:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:20:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:20:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:21:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:21:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:21:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:21:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:24:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:24:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:24:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:24:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:27:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:27:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:27:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:27:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:27:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:27:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:27:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:27:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:27:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:27:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:34:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:34:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:34:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:34:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:36:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:36:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:38:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:38:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:38:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:38:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:38:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:38:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:38:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:38:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:41:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:41:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:42:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:42:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:42:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:42:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:42:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:42:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:42:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:42:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:42:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:42:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:42:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:42:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:43:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:43:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:43:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:43:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:43:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:43:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:43:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:43:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:43:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:43:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:43:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:43:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:43:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:43:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:44:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:44:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:46:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:46:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:48:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:48:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:49:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:49:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:49:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:49:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:54:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:54:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:54:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:54:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:55:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:55:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:55:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:55:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:55:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:55:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:55:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:55:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:55:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:55:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:55:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:55:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:55:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:55:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:55:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:55:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:56:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:56:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:56:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:56:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:56:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:56:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:56:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:56:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:59:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:59:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:59:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:59:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 17:59:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 17:59:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/18.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/18.log deleted file mode 100644 index 02152bd..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/18.log +++ /dev/null @@ -1,924 +0,0 @@ -日志时间:2023-06-25 18:00:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:00:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:00:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:00:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:01:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:01:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:01:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:01:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:01:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:01:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:01:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:01:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:01:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:01:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:01:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:01:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:01:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:01:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:01:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:01:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:01:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:01:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:01:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:01:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:02:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:02:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:02:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:02:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:04:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:04:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:04:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:04:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:05:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:05:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:05:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:05:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:05:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:05:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:05:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:05:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:05:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:05:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:05:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:05:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:05:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:05:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:05:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:05:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:06:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:06:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:06:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:06:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:06:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:06:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:06:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:06:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:06:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:06:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:06:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:06:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:09:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:09:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:11:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:11:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:11:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:11:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:11:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:11:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:11:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:11:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:12:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:12:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:12:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:12:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:15:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:15:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:16:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:16:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:17:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:17:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:17:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:17:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:19:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:19:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:23:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:23:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:23:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:23:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:23:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:23:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:24:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:24:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:24:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:24:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:24:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:24:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:24:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:24:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:24:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:24:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:24:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:24:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:24:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:24:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:25:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:25:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:25:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:25:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:25:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:25:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:27:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:27:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:27:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:27:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:28:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:28:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:28:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:28:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:29:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:29:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:30:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:30:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 18:58:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 18:58:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/19.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/19.log deleted file mode 100644 index 9d002e7..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/19.log +++ /dev/null @@ -1,420 +0,0 @@ -日志时间:2023-06-25 19:05:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:05:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:05:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:05:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:05:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:05:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:06:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:06:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:06:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:06:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:07:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:07:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:07:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:07:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:08:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:08:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:15:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:15:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:15:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:15:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:15:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:15:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:15:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:15:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:16:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:16:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:18:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:18:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:22:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:22:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:22:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:22:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:22:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:22:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:22:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:22:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:22:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:22:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:22:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:22:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:22:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:22:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:28:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:28:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:28:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:28:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:42:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:42:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:42:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:42:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:43:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:43:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:43:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:43:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:43:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:43:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:46:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:46:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:46:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:46:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:49:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:49:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:49:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:49:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:50:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:50:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:51:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:51:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 19:51:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 19:51:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/20.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/20.log deleted file mode 100644 index 4f0db04..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/20.log +++ /dev/null @@ -1,132 +0,0 @@ -日志时间:2023-06-25 20:05:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:05:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 20:11:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:11:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 20:15:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:15:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 20:16:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:16:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 20:16:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:16:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 20:16:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:16:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 20:19:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:19:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 20:20:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:20:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 20:20:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:20:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 20:27:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:27:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-25 20:29:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/25 20:29:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/08.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/08.log deleted file mode 100644 index d3785ec..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/08.log +++ /dev/null @@ -1,60 +0,0 @@ -日志时间:2023-06-26 08:52:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 8:52:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 08:54:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 8:54:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 08:54:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 8:54:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 08:54:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 8:54:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 08:58:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 8:58:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/09.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/09.log deleted file mode 100644 index 95fbf72..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/09.log +++ /dev/null @@ -1,1404 +0,0 @@ -日志时间:2023-06-26 09:02:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:02:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:08:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:08:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:09:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:09:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:09:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:09:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:09:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:09:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:09:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:09:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:09:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:09:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:09:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:09:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:09:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:09:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:09:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:09:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:09:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:09:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:09:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:09:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:11:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:11:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:14:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:14:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:14:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:14:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:14:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:14:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:14:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:14:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:15:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:15:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:15:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:15:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:15:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:15:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:15:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:15:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:15:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:15:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:15:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:15:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:15:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:15:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:15:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:15:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:15:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:15:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:15:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:15:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:17:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:17:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:20:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:20:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:20:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:20:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:20:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:20:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:20:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:20:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:20:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:20:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:20:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:20:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:21:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:21:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:21:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:21:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:21:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:21:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:21:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:21:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:21:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:21:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:22:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:22:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:22:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:22:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:22:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:22:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:22:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:22:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:22:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:22:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:25:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:25:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:26:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:26:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:27:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:27:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:27:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:27:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:30:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:30:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:30:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:30:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:30:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:30:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:30:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:30:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:32:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:32:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:32:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:32:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:33:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:33:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:33:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:33:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:33:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:33:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:33:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:33:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:33:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:33:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:33:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:33:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:34:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:34:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:34:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:34:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:34:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:34:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:34:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:34:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:35:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:35:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:35:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:35:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:35:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:35:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:35:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:35:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:35:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:35:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:35:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:35:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:36:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:36:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:36:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:36:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:36:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:36:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:36:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:36:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:36:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:36:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:36:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:36:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:37:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:37:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:38:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:38:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:38:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:38:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:38:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:38:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:39:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:39:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:39:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:39:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:41:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:41:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:42:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:42:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:42:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:42:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:42:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:42:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:47:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:47:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:50:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:50:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:50:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:50:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:50:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:50:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:50:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:50:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:50:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:50:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:50:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:50:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:51:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:51:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:51:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:51:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:52:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:52:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:52:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:52:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:52:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:52:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:52:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:52:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:55:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:55:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:56:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:56:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:56:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:56:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:56:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:56:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:56:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:56:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:56:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:56:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:56:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:56:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:57:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:57:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:57:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:57:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:57:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:57:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:57:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:57:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:57:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:57:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:58:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:58:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:58:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:58:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:58:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:58:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:58:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:58:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:59:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:59:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 09:59:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 9:59:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/10.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/10.log deleted file mode 100644 index 20f61f3..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/10.log +++ /dev/null @@ -1,1584 +0,0 @@ -日志时间:2023-06-26 10:04:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:04:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:06:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:06:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:06:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:06:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:13:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:13:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:13:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:13:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:13:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:13:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:13:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:13:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:13:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:13:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:13:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:13:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:13:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:13:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:14:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:14:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:14:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:14:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:14:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:14:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:15:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:15:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:18:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:18:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:18:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:18:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:22:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:22:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:25:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:25:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:25:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:25:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:25:32 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:25:32 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:25:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:25:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:28:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:28:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:32:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:32:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:32:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:32:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:32:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:32:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:32:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:32:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:32:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:32:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:33:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:33:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:33:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:33:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:33:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:33:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:34:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:34:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:34:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:34:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:34:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:34:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:34:48 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:34:48 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:34:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:34:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:34:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:34:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:35:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:35:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:37:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:37:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:37:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:37:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:37:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:37:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:37:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:37:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:37:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:37:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:37:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:37:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:37:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:37:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:38:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:38:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:38:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:38:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:38:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:38:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:38:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:38:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:38:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:38:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:38:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:38:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:23 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:23 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:26 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:26 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:39:54 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:39:54 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:40:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:40:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:43:18 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:43:18 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:44:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:44:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:47:44 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:47:44 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:47:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:47:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:48:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:48:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:48:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:48:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:48:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:48:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:49:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:49:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:49:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:49:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:49:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:49:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:50:15 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:50:15 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:50:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:50:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:50:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:50:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:50:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:50:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:50:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:50:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:50:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:50:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:50:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:50:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:50:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:50:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:50:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:50:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:51:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:51:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:51:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:51:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:51:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:51:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:51:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:51:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:52:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:52:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:54:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:54:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:56:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:56:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:56:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:56:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:56:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:56:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:57:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:57:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:57:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:57:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:57:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:57:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:57:53 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:57:53 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:58:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:58:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 10:58:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 10:58:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/11.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/11.log deleted file mode 100644 index 89e7efd..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/11.log +++ /dev/null @@ -1,684 +0,0 @@ -日志时间:2023-06-26 11:00:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:00:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:00:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:00:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:01:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:01:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:01:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:01:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:01:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:01:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:01:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:01:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:03:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:03:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:05:35 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:05:35 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:05:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:05:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:05:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:05:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:05:50 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:05:50 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:05:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:05:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:05:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:05:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:06:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:06:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:08:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:08:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:08:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:08:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:08:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:08:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:08:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:08:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:08:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:08:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:08:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:08:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:10:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:10:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:11:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:11:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:11:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:11:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:11:34 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:11:34 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:11:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:11:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:11:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:11:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:12:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:12:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:12:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:12:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:12:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:12:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:13:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:13:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:13:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:13:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:14:28 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:14:28 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:14:30 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:14:30 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:14:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:14:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:15:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:15:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:18:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:18:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:18:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:18:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:19:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:19:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:19:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:19:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:25:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:25:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:25:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:25:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:25:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:25:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:26:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:26:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:26:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:26:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:26:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:26:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:27:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:27:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:38:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:38:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:38:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:38:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:38:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:38:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:38:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:38:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:39:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:39:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:45:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:45:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:45:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:45:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:45:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:45:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:50:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:50:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:51:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:51:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-26 11:52:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/26 11:52:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/18.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/18.log deleted file mode 100644 index db58f52..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/18.log +++ /dev/null @@ -1,636 +0,0 @@ -日志时间:2023-06-27 18:39:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:39:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:39:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:39:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:40:24 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:40:24 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:41:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:41:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:41:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:41:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:42:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:42:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:43:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:43:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:43:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:43:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:43:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:43:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:43:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:43:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:43:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:43:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:44:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:44:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:44:49 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:44:49 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:47:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:47:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:47:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:47:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:47:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:47:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:47:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:47:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:47:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:47:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:47:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:47:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:49:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:49:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:49:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:49:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:49:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:49:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:49:31 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:49:31 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:49:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:49:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:49:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:49:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:49:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:49:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:50:27 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:50:27 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:50:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:50:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:50:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:50:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:50:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:50:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:50:58 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:50:58 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:51:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:51:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:51:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:51:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:51:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:51:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:51:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:51:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:51:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:51:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:51:56 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:51:56 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:52:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:52:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:52:37 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:52:37 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:53:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:53:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:54:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:54:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:54:11 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:54:11 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:54:12 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:54:12 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:56:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:56:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:56:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:56:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:56:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:56:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:56:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:56:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:56:22 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:56:22 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:56:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:56:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:57:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:57:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:57:41 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:57:41 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:58:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:58:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 18:58:14 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 18:58:14 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/19.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/19.log deleted file mode 100644 index aba693a..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/19.log +++ /dev/null @@ -1,228 +0,0 @@ -日志时间:2023-06-27 19:00:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:00:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:00:38 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:00:38 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:00:39 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:00:39 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:00:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:00:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:00:47 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:00:47 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:00:55 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:00:55 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:00:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:00:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:01:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:01:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:04:16 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:04:16 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:05:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:05:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:07:02 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:07:02 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:07:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:07:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:07:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:07:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:08:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:08:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:10:33 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:10:33 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:16:40 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:16:40 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:16:59 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:16:59 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:18:17 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:18:17 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 19:22:52 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 19:22:52 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/20.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/20.log deleted file mode 100644 index 7de30dd..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/20.log +++ /dev/null @@ -1,72 +0,0 @@ -日志时间:2023-06-27 20:15:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 20:15:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 20:18:01 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 20:18:01 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 20:19:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 20:19:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 20:25:13 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 20:25:13 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 20:25:42 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 20:25:42 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-27 20:39:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/27 20:39:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/10.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/10.log deleted file mode 100644 index 6b28e2d..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/10.log +++ /dev/null @@ -1,36 +0,0 @@ -日志时间:2023-06-28 10:39:10 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 10:39:10 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 10:40:29 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 10:40:29 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 10:44:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 10:44:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/15.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/15.log deleted file mode 100644 index 9b5b709..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/15.log +++ /dev/null @@ -1,36 +0,0 @@ -日志时间:2023-06-28 15:52:08 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 15:52:08 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 15:58:20 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 15:58:20 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 15:59:06 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 15:59:06 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/16.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/16.log deleted file mode 100644 index 9f844a3..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/16.log +++ /dev/null @@ -1,180 +0,0 @@ -日志时间:2023-06-28 16:06:19 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:06:19 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:07:46 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:07:46 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:08:21 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:08:21 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:09:45 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:09:45 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:10:05 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:10:05 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:14:43 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:14:43 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:14:57 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:14:57 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:16:04 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:16:04 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:16:25 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:16:25 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:18:09 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:18:09 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:19:03 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:19:03 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:20:00 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:20:00 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:21:07 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:21:07 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:21:51 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:21:51 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - -日志时间:2023-06-28 16:23:36 -************************Exception Start******************************** -Exception Remark:添加数据库日志信息_WriteSysLog_1 发生异常 -Exception Date:2023/6/28 16:23:36 -Exception Type:MySqlConnector.MySqlException -Exception Message:Data too long for column 'OperatingManual' at row 1 -Exception Source:SqlSugar -Exception StackTrace: at SqlSugar.AdoProvider.ExecuteCommand(String sql, SugarParameter[] parameters) - at SqlSugar.InsertableProvider`1.ExecuteCommand() - at Elight.Logic.WriteSysLog.WriteSysLogadd(String operationType, String content, Result result, SqlSugarClient _db, String opeCasDepAccCas) in E:\Code\24Hour.Service\Elight.Logic\WriteSysLog.cs:line 52 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230704/14.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230704/14.log deleted file mode 100644 index f7a74bb..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230704/14.log +++ /dev/null @@ -1,1080 +0,0 @@ -日志时间:2023-07-04 14:49:19 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:49:19 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:49:19 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:49:19 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:50:39 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:50:39 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:50:39 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:50:39 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:52:39 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:52:39 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:52:39 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:52:39 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:53:19 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:53:19 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:53:19 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:53:19 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:53:59 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:53:59 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:53:59 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:53:59 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:54:39 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:54:39 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:54:39 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:54:39 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:55:01 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:55:01 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:55:01 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:55:01 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:55:22 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:55:22 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:55:22 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:55:22 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:55:43 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:55:43 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:55:43 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:55:43 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:56:04 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:56:04 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:56:04 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:56:04 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:56:25 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:56:25 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:56:25 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:56:25 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:56:46 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:56:46 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:56:46 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:56:46 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:57:07 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:57:07 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:57:07 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:57:07 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:57:28 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:57:28 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:57:28 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:57:28 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:57:49 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:57:49 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:57:49 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:57:49 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:58:10 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:58:10 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:58:10 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:58:10 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:58:31 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:58:31 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:58:31 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:58:31 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:58:52 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:58:52 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:58:52 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:58:52 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:59:13 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:59:13 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 14:59:13 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 14:59:13 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230704/16.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230704/16.log deleted file mode 100644 index e5a0a8b..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230704/16.log +++ /dev/null @@ -1,1065 +0,0 @@ -日志时间:2023-07-04 16:27:59 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:27:59 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:28:00 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:28:00 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:28:20 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:28:20 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:28:51 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:28:51 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:29:00 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:29:00 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:29:31 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:29:31 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:29:51 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:29:51 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:30:00 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:30:00 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:30:20 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:30:20 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:30:40 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:30:40 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:31:00 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:31:00 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:31:31 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:31:31 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:31:40 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:31:40 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:32:00 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:32:00 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:32:20 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:32:20 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:32:20 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:32:20 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:32:40 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:32:40 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:32:40 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:32:40 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:33:11 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:33:11 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:33:11 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:33:11 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:33:31 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:33:31 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:33:31 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:33:31 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:33:51 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:33:51 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:33:51 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:33:51 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:34:11 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:34:11 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:34:11 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:34:11 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:34:59 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:34:59 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:34:59 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:34:59 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:35:21 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:35:21 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:35:21 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:35:21 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:35:42 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:35:42 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:35:42 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:35:42 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:36:03 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:36:03 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:36:03 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:36:03 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:36:24 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:36:24 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-04 16:36:24 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/4 16:36:24 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - diff --git a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230705/09.log b/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230705/09.log deleted file mode 100644 index f4ae374..0000000 --- a/24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230705/09.log +++ /dev/null @@ -1,570 +0,0 @@ -日志时间:2023-07-05 09:33:39 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:33:39 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:33:39 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:33:39 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:33:51 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:33:51 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:33:51 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:33:51 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:34:11 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:34:11 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:34:11 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:34:11 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:34:20 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:34:20 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:34:20 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:34:20 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:35:19 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:35:19 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:35:19 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:35:19 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:35:41 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:35:41 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:35:41 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:35:41 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 [::ffff:112.30.117.22]:80 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:55:39 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:55:39 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:55:39 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:55:39 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:An error occurred while sending the request. -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:An error occurred while sending the request. -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:55:51 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:55:51 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:55:51 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:55:51 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:56:00 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:56:00 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:56:00 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:56:00 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:56:20 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:56:20 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - -日志时间:2023-07-05 09:56:20 -************************Exception Start******************************** -Exception Remark:接口调用 -Exception Date:2023/7/5 9:56:20 -Inner Exception Type:System.Net.Http.HttpRequestException -Inner Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Inner Exception Source:System.Net.Http -Inner Exception StackTrace: at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpMessageInvoker.Send(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken) - at System.Net.HttpWebRequest.SendRequest(Boolean async) - at System.Net.HttpWebRequest.GetResponse() -Exception Type:System.Net.WebException -Exception Message:不知道这样的主机。 (jhg.ahjiguang.cn:80) -Exception Source:System.Net.Requests -Exception StackTrace: at System.Net.HttpWebRequest.GetResponse() - at Elight.Utility.HttpHelper.Post(String sUrl, Object obj_model, String& ErrMsg) in E:\Code\24Hour.Service\Elight.Utility\HttpHelper.cs:line 62 -************************Exception End************************************ - diff --git a/Dto/RegisterDto.cs b/Dto/RegisterDto.cs index 6ed163d..20358b0 100644 --- a/Dto/RegisterDto.cs +++ b/Dto/RegisterDto.cs @@ -109,6 +109,10 @@ namespace Dto /// 律师事务所统一信用代码 /// public string DepartMentNameSccCode { get; set; } + /// + /// 律师名称 + /// + public string LawyerName { get; set; } } } diff --git a/Elight.Entity/AppMode/App_LawyerServicesModel.cs b/Elight.Entity/AppMode/App_LawyerServicesModel.cs index 2bf1817..b6ade7f 100644 --- a/Elight.Entity/AppMode/App_LawyerServicesModel.cs +++ b/Elight.Entity/AppMode/App_LawyerServicesModel.cs @@ -165,7 +165,10 @@ namespace Elight.Entity /// [DataMember] public string? legalAidPhoto { get; set; } - + /// + /// 单位证明 律师事务所证明 + /// + public string? departmentPhoto { get; set; } /// /// 关系证明图片 /// diff --git a/Elight.Entity/SystemModel/App_Sys_UserModel.cs b/Elight.Entity/SystemModel/App_Sys_UserModel.cs index c5fd23d..8b81cd6 100644 --- a/Elight.Entity/SystemModel/App_Sys_UserModel.cs +++ b/Elight.Entity/SystemModel/App_Sys_UserModel.cs @@ -37,10 +37,6 @@ namespace Elight.Entity /// [DataMember] public string? departmentName { get; set; } - /// - /// 单位证明 律师事务所证明 - /// - public string? departmentPhoto { get; set; } /// /// 单位同意信用代码 diff --git a/Elight.Utility/Encrypt/AES.cs b/Elight.Utility/Encrypt/AES.cs index 0e21edb..eee5429 100644 --- a/Elight.Utility/Encrypt/AES.cs +++ b/Elight.Utility/Encrypt/AES.cs @@ -39,20 +39,27 @@ namespace Elight.Utility.Encrypt /// 结果 public static string Decrypt(string toDecrypt) { - byte[] keyArray = Encoding.UTF8.GetBytes("12345678901234567890123456789012"); - byte[] toEncryptArray = Convert.FromBase64String(toDecrypt); - - RijndaelManaged rDel = new RijndaelManaged + try { - Key = keyArray, - Mode = CipherMode.ECB, - Padding = PaddingMode.PKCS7 - }; + byte[] keyArray = Encoding.UTF8.GetBytes("12345678901234567890123456789012"); + byte[] toEncryptArray = Convert.FromBase64String(toDecrypt); - ICryptoTransform cTransform = rDel.CreateDecryptor(); - byte[] resultArray = cTransform.TransformFinalBlock(toEncryptArray, 0, toEncryptArray.Length); + RijndaelManaged rDel = new RijndaelManaged + { + Key = keyArray, + Mode = CipherMode.ECB, + Padding = PaddingMode.PKCS7 + }; - return Encoding.UTF8.GetString(resultArray); + ICryptoTransform cTransform = rDel.CreateDecryptor(); + byte[] resultArray = cTransform.TransformFinalBlock(toEncryptArray, 0, toEncryptArray.Length); + + return Encoding.UTF8.GetString(resultArray); + } + catch + { + return ""; + } } } } diff --git a/Elight.Utility/Encrypt/DataEncryption.cs b/Elight.Utility/Encrypt/DataEncryption.cs new file mode 100644 index 0000000..d9ae4d3 --- /dev/null +++ b/Elight.Utility/Encrypt/DataEncryption.cs @@ -0,0 +1,179 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Elight.Utility.Encrypt +{ + public sealed class DataEncryption + { + private static byte[] KEY = new byte[8] { 40, 16, 37, 37, 32, 62, 83, 60 }; + + private static byte ByteXor(byte b, byte key) + { + b = (byte)(b ^ key); + return b; + } + + private static byte[] ByteXor(byte[] data, byte[] key) + { + var keyLen = key.Length; + var dataLen = data.Length; + if (dataLen == 0) + { + return data; + } + for (var i = 0; i < dataLen; i++) + { + data[i] = ByteXor(data[i], key[i % keyLen]); + } + return data; + } + + /// + /// 加密,key必须是2的n次方 + /// + public static byte[] Encryption(byte[] data, byte[] key) + { + return ByteXor(data, key); + } + + /// + /// 加密, 使用内置密钥 + /// + public static byte[] Encryption(byte[] data) + { + return ByteXor(data, KEY); + } + + /// + /// 加密文件 + /// + /// 明文文件 + /// 密文文件 + /// 密钥 + public static void Encryption(string srcFile, string descFile, byte[] key) + { + var fs = File.OpenRead(srcFile); + var newfs = File.Create(descFile, 1024 * 512); + var count = 0; + var keyLen = key.Length; + + var buffer = new byte[1024 * 512]; + using (fs) + { + using (newfs) + { + if (fs.Length == 0) + { + return; + } + while (fs.Position < fs.Length) + { + count = fs.Read(buffer, 0, 1024 * 512); + for (var i = 0; i < count; i++) + { + buffer[i] = ByteXor(buffer[i], key[i % keyLen]); + } + newfs.Write(buffer, 0, count); + } + } + } + } + + /// + /// 加密文件, 使用内置密钥 + /// + /// 明文文件 + /// 密文文件 + public static void Encryption(string srcFile, string descFile) + { + Encryption(srcFile, descFile, KEY); + } + + /// + /// 解密 + /// + public static byte[] Decryption(byte[] data, byte[] key) + { + return ByteXor(data, key); + } + + /// + /// 解密, 使用内置密钥 + /// + public static byte[] Decryption(byte[] data) + { + return ByteXor(data, KEY); + } + + /// + /// 解密文件 + /// + /// 密文文件 + /// 解密后的文件 + /// 密钥 + public static void Decryption(string srcFile, string descFile, byte[] key) + { + Encryption(srcFile, descFile, key); + } + + /// + /// 解密文件, 使用内置密钥 + /// + /// 密文文件 + /// 解密后的文件 + public static void Decryption(string srcFile, string descFile) + { + Decryption(srcFile, descFile, KEY); + } + + /// + /// 根据文件路径判断是否加密文件 + /// + /// 文件路径 + /// + public static bool JudgeIsEncryFile(string srcFile) + { + return srcFile.LastIndexOf(".encry") > 0; + } + /// + /// 解密文件,返回base64值 + /// + /// + /// + public static string Decryptiones(string srcFile) + { + var fs = File.OpenRead(srcFile); + //var newfs = File.Create(descFile, 1024 * 512); + var newfs = new MemoryStream(); + var count = 0; + var keyLen = KEY.Length; + + var buffer = new byte[1024 * 512]; + using (fs) + { + using (newfs) + { + if (fs.Length == 0) + { + return null; + } + while (fs.Position < fs.Length) + { + count = fs.Read(buffer, 0, 1024 * 512); + for (var i = 0; i < count; i++) + { + buffer[i] = ByteXor(buffer[i], KEY[i % keyLen]); + } + newfs.Write(buffer, 0, count); + } + } + } + + var base64 = Convert.ToBase64String(newfs.ToArray()); + return base64; + } + } +} diff --git a/WebApplication1/Controllers/TwentySystemController.cs b/WebApplication1/Controllers/TwentySystemController.cs index cdfcd16..7075e7a 100644 --- a/WebApplication1/Controllers/TwentySystemController.cs +++ b/WebApplication1/Controllers/TwentySystemController.cs @@ -771,6 +771,7 @@ namespace WebApplication1.Controllers data.zjhm = dto.ProposerZJHM; data.zjlxdm = "9910180300010"; data.zjlxmc = "ʦִҵ֤"; + data.sqrxm = dto.LawyerName; return data; }; ContentDto sqrModel; diff --git a/WebApplication1/WebApplication1.csproj b/WebApplication1/WebApplication1.csproj index 16be4be..1b0f150 100644 --- a/WebApplication1/WebApplication1.csproj +++ b/WebApplication1/WebApplication1.csproj @@ -6,8 +6,8 @@ enable ae1f7aa6-e320-4393-ac3f-984b92923499 Linux - 1.0.1.6 - 1.0.1.6 + 1.0.1.7 + 1.0.1.7