From 1ad24b978a8e9787962f5f1a98007322c4526b5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Fri, 22 Dec 2023 17:58:38 +0800 Subject: [PATCH 01/66] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=EF=BC=8C=E7=BB=9F=E4=B8=80=E5=90=8E=E7=BC=80?= =?UTF-8?q?=E5=90=8D=E4=B8=BAaks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 69 ++++++++++++++++--- 1 file changed, 59 insertions(+), 10 deletions(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 214037a..050d67e 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -8,7 +8,9 @@ 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 Microsoft.AspNetCore.Authorization; @@ -1488,7 +1490,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 = "预约已被取消"; @@ -2747,7 +2749,7 @@ namespace _24Hour.Controllers.Common public async Task Upload_Files(IFormFile file) { Result outParm = new Result(); - return await Task.Run(() => + return await Task.Run(async () => { if (file.Length <= 0) { @@ -2761,22 +2763,38 @@ namespace _24Hour.Controllers.Common 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; + var _path = Path.Combine("CaseFile", "card", DateTime.Now.ToString("yyyy-MM-dd")); + var dic = Path.Combine(Environment.CurrentDirectory, "wwwroot", _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}"); + var __path = Path.Combine(_path, filename); + path = System.IO.Path.ChangeExtension(path, "aks"); + using (var stream = new FileStream(path, FileMode.OpenOrCreate)) { - file.CopyToAsync(stream).Wait(); + await file.CopyToAsync(stream); } - var __path = $"{_path}/{filename}"; + // var __path = $"{_path}/{filename}"; + + + __path = System.IO.Path.ChangeExtension(__path, "aks"); + + + var repath = "/" + __path.Replace(@"\", @"/"); outParm.IsSucceed = true; - outParm.result = new { hzname = hzname, url = __path, tile = Path.GetFileNameWithoutExtension(file.FileName), size, DataPath = path, filePath = dic }; + outParm.result = new + { + hzname = hzname, + url = repath, + tile = Path.GetFileNameWithoutExtension(file.FileName), + size, + DataPath = path, + filePath = dic + }; } catch (Exception e) { @@ -2786,6 +2804,30 @@ namespace _24Hour.Controllers.Common return Json(outParm); }); } + [HttpGet] + [Route("GetImageFile")] + public async Task GetImageFile(string file) + { + Result result = new Result(); + var urlpath = file.Replace("/", @"\"); + var path = Path.Combine(Environment.CurrentDirectory, "wwwroot"+urlpath); + if (System.IO.File.Exists(path)) + { + var str = Convert.ToBase64String(System.IO.File.ReadAllBytes(path)); + result.result = new + { + BaseStr = str + }; + result.IsSucceed = true; + } + else + { + result.IsSucceed = false; + result.Message = "文件不存在"; + } + + return result; + } /// /// 文件上传--附件 /// @@ -2794,6 +2836,7 @@ namespace _24Hour.Controllers.Common [HttpPost] [Route("Upload_Files1")] [AllowAnonymous] + public async Task Upload_Files1(IFormFile file) { Result outParm = new Result(); @@ -2819,12 +2862,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}"); + var __path = Path.Combine(_path, filename); + path = System.IO.Path.ChangeExtension(path, "aks"); + using (var stream = new FileStream(path, FileMode.OpenOrCreate)) { await file.CopyToAsync(stream); } // var __path = $"{_path}/{filename}"; - var __path = Path.Combine(_path, filename); + + + __path = System.IO.Path.ChangeExtension(__path, "aks"); + var repath = "/" + __path.Replace(@"\", @"/"); From 54a024fbae3d584aa4bfcd301c689b99c73adf47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Fri, 22 Dec 2023 18:04:52 +0800 Subject: [PATCH 02/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E7=AD=9B=E9=80=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 050d67e..73fd47e 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2763,6 +2763,16 @@ namespace _24Hour.Controllers.Common IFormFile file = Request.Form.Files.FirstOrDefault(); var fname = $@"{file.FileName}"; var hzname = $"{Path.GetExtension(fname)}"; + + var allowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".zip" }; + if (allowedExtensions.Contains(hzname.ToLower())) + { + 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); @@ -2854,6 +2864,17 @@ namespace _24Hour.Controllers.Common IFormFile file = Request.Form.Files.FirstOrDefault(); var fname = $@"{file.FileName}"; var hzname = $"{Path.GetExtension(fname)}"; + + var allowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp",".zip" }; + if (allowedExtensions.Contains(hzname.ToLower())) + { + 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); From 787b198a8bc990eaac912b31cfdbc2964b2d9e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Fri, 22 Dec 2023 18:07:30 +0800 Subject: [PATCH 03/66] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 73fd47e..f961ef8 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2866,7 +2866,7 @@ namespace _24Hour.Controllers.Common var hzname = $"{Path.GetExtension(fname)}"; var allowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp",".zip" }; - if (allowedExtensions.Contains(hzname.ToLower())) + if (allowedExtensions.Contains(hzname.ToLower())==false) { outParm.IsSucceed = false; outParm.Message = "不被允许的文件格式!"; From cdac2f43c1441fcd9df8c66dd7a6056233a88178 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Fri, 22 Dec 2023 18:08:08 +0800 Subject: [PATCH 04/66] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index f961ef8..46305df 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2765,7 +2765,7 @@ namespace _24Hour.Controllers.Common var hzname = $"{Path.GetExtension(fname)}"; var allowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".zip" }; - if (allowedExtensions.Contains(hzname.ToLower())) + if (allowedExtensions.Contains(hzname.ToLower())==false) { outParm.IsSucceed = false; outParm.Message = "不被允许的文件格式!"; From 88bad8c9c626dfddeeb0dc83bb8345a4063d4929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Fri, 22 Dec 2023 18:52:39 +0800 Subject: [PATCH 05/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E8=8E=B7=E5=8F=96=E6=89=B9=E9=87=8F=E7=9A=84?= =?UTF-8?q?=E5=9B=BE=E7=89=87base=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 50 +++++++++++++++++-- 1 file changed, 46 insertions(+), 4 deletions(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 46305df..3dda38c 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2739,6 +2739,8 @@ namespace _24Hour.Controllers.Common #endregion #region 文件上传 + + private string[] AllowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".zip" ,".xls",".xlsx"}; /// /// 文件上传--附件 /// @@ -2764,8 +2766,8 @@ namespace _24Hour.Controllers.Common var fname = $@"{file.FileName}"; var hzname = $"{Path.GetExtension(fname)}"; - var allowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".zip" }; - if (allowedExtensions.Contains(hzname.ToLower())==false) + + if (AllowedExtensions.Contains(hzname.ToLower())==false) { outParm.IsSucceed = false; outParm.Message = "不被允许的文件格式!"; @@ -2814,10 +2816,13 @@ namespace _24Hour.Controllers.Common return Json(outParm); }); } + + [HttpGet] [Route("GetImageFile")] public async Task GetImageFile(string file) { + Result result = new Result(); var urlpath = file.Replace("/", @"\"); var path = Path.Combine(Environment.CurrentDirectory, "wwwroot"+urlpath); @@ -2838,6 +2843,43 @@ namespace _24Hour.Controllers.Common return result; } + public class GetBaseStringDto + { + public List Files { get; set; } + } + [HttpPost] + [Route("GetImageFiles")] + public async Task GetImageFiles(GetBaseStringDto file) + { + //根据输入url获取base64值 + var getstr = (string s) => + { + var urlpath = s.Replace("/", @"\"); + var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); + if (System.IO.File.Exists(path)) + { + return Convert.ToBase64String(System.IO.File.ReadAllBytes(path)); + } + else + { + return ""; + } + }; + //根据输入url获取文件是否存在 + var getexist = (string s) => + { + var urlpath = s.Replace("/", @"\"); + var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); + return System.IO.File.Exists(s); + }; + var data = file.Files.Select(x => new + { + IsExist = getexist(x), + BaseStr = getstr(x) + }); + result.result = data; + return result; + } /// /// 文件上传--附件 /// @@ -2865,8 +2907,8 @@ namespace _24Hour.Controllers.Common var fname = $@"{file.FileName}"; var hzname = $"{Path.GetExtension(fname)}"; - var allowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp",".zip" }; - if (allowedExtensions.Contains(hzname.ToLower())==false) + + if (AllowedExtensions.Contains(hzname.ToLower())==false) { outParm.IsSucceed = false; outParm.Message = "不被允许的文件格式!"; From f1df37f903254c4a089118ee9ce19e05cc0dda0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Fri, 22 Dec 2023 20:57:25 +0800 Subject: [PATCH 06/66] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=A4=9A=E4=B8=AA?= =?UTF-8?q?=E5=9B=BE=E7=89=87=E6=97=B6=E6=B7=BB=E5=8A=A0=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E5=90=8D=E5=AD=97=E7=9A=84=E8=BF=94=E5=9B=9E=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 3dda38c..5d67717 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2874,6 +2874,7 @@ namespace _24Hour.Controllers.Common }; var data = file.Files.Select(x => new { + Item=x, IsExist = getexist(x), BaseStr = getstr(x) }); From 9df57ed6a52eb712b09d944b5a7ba5ec4c620f6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Fri, 22 Dec 2023 21:15:02 +0800 Subject: [PATCH 07/66] =?UTF-8?q?GetImageFiles=E4=BB=A5List?= =?UTF-8?q?=E5=85=A5=E5=8F=82=EF=BC=8C=E4=BF=AE=E6=94=B9=E6=A3=80=E6=9F=A5?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E6=97=B6=E5=8F=82=E6=95=B0=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 5d67717..2e48831 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2843,13 +2843,9 @@ namespace _24Hour.Controllers.Common return result; } - public class GetBaseStringDto - { - public List Files { get; set; } - } [HttpPost] [Route("GetImageFiles")] - public async Task GetImageFiles(GetBaseStringDto file) + public async Task GetImageFiles(List file) { //根据输入url获取base64值 var getstr = (string s) => @@ -2870,9 +2866,9 @@ namespace _24Hour.Controllers.Common { var urlpath = s.Replace("/", @"\"); var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); - return System.IO.File.Exists(s); + return System.IO.File.Exists(path); }; - var data = file.Files.Select(x => new + var data = file.Select(x => new { Item=x, IsExist = getexist(x), From a0c8a32510aed0cabea7da32ab5963c7d17f8194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Fri, 22 Dec 2023 22:32:27 +0800 Subject: [PATCH 08/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E7=BB=93=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 58 +++++++++++-------- 1 file changed, 34 insertions(+), 24 deletions(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 2e48831..b7a5713 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2847,34 +2847,44 @@ namespace _24Hour.Controllers.Common [Route("GetImageFiles")] public async Task GetImageFiles(List file) { - //根据输入url获取base64值 - var getstr = (string s) => + try { - var urlpath = s.Replace("/", @"\"); - var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); - if (System.IO.File.Exists(path)) + //根据输入url获取base64值 + var getstr = (string s) => { - return Convert.ToBase64String(System.IO.File.ReadAllBytes(path)); - } - else + var urlpath = s.Replace("/", @"\"); + var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); + if (System.IO.File.Exists(path)) + { + return Convert.ToBase64String(System.IO.File.ReadAllBytes(path)); + } + else + { + return ""; + } + }; + //根据输入url获取文件是否存在 + var getexist = (string s) => { - return ""; - } - }; - //根据输入url获取文件是否存在 - var getexist = (string s) => - { - var urlpath = s.Replace("/", @"\"); - var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); - return System.IO.File.Exists(path); - }; - var data = file.Select(x => new + var urlpath = s.Replace("/", @"\"); + var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + 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 { - Item=x, - IsExist = getexist(x), - BaseStr = getstr(x) - }); - result.result = data; + result.IsSucceed = true; + result.Message = "系统错误"; + } return result; } /// From 99a1527555cc281f1391a7a30b8c4f7c566d7cd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Sat, 23 Dec 2023 11:17:45 +0800 Subject: [PATCH 09/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=8A=A0=E5=AF=86=E7=AE=97=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elight.Utility/Encrypt/DataEncryption.cs | 175 +++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 Elight.Utility/Encrypt/DataEncryption.cs diff --git a/Elight.Utility/Encrypt/DataEncryption.cs b/Elight.Utility/Encrypt/DataEncryption.cs new file mode 100644 index 0000000..b87f403 --- /dev/null +++ b/Elight.Utility/Encrypt/DataEncryption.cs @@ -0,0 +1,175 @@ +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; + } + + 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; + } + } +} From 180dfb0a37f2dbd011d6efaec1198940627e58e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Sat, 23 Dec 2023 11:18:15 +0800 Subject: [PATCH 10/66] =?UTF-8?q?=E6=96=87=E4=BB=B6=E4=B8=8A=E4=BC=A0?= =?UTF-8?q?=E5=92=8C=E4=B8=8B=E8=BD=BD=E6=97=B6=E8=BF=9B=E8=A1=8C=E5=8A=A0?= =?UTF-8?q?=E8=A7=A3=E5=AF=86=E8=BF=90=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 86 ++----------------- 1 file changed, 9 insertions(+), 77 deletions(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index b7a5713..22a9544 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2767,7 +2767,7 @@ namespace _24Hour.Controllers.Common var hzname = $"{Path.GetExtension(fname)}"; - if (AllowedExtensions.Contains(hzname.ToLower())==false) + if (AllowedExtensions.Contains(hzname.ToLower()) == false) { outParm.IsSucceed = false; outParm.Message = "不被允许的文件格式!"; @@ -2775,6 +2775,7 @@ namespace _24Hour.Controllers.Common } + var _path = Path.Combine("CaseFile", "card", DateTime.Now.ToString("yyyy-MM-dd")); var dic = Path.Combine(Environment.CurrentDirectory, "wwwroot", _path); @@ -2786,16 +2787,14 @@ namespace _24Hour.Controllers.Common var __path = Path.Combine(_path, filename); path = System.IO.Path.ChangeExtension(path, "aks"); - using (var stream = new FileStream(path, FileMode.OpenOrCreate)) + 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}"; - __path = System.IO.Path.ChangeExtension(__path, "aks"); - - var repath = "/" + __path.Replace(@"\", @"/"); outParm.IsSucceed = true; outParm.result = new @@ -2828,7 +2827,7 @@ namespace _24Hour.Controllers.Common var path = Path.Combine(Environment.CurrentDirectory, "wwwroot"+urlpath); if (System.IO.File.Exists(path)) { - var str = Convert.ToBase64String(System.IO.File.ReadAllBytes(path)); + var str = Elight.Utility.Encrypt.DataEncryption.Decryptiones(path); result.result = new { BaseStr = str @@ -2856,7 +2855,7 @@ namespace _24Hour.Controllers.Common var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); if (System.IO.File.Exists(path)) { - return Convert.ToBase64String(System.IO.File.ReadAllBytes(path)); + return Elight.Utility.Encrypt.DataEncryption.Decryptiones(path); } else { @@ -2898,74 +2897,7 @@ namespace _24Hour.Controllers.Common public async Task Upload_Files1(IFormFile file) { - Result outParm = new Result(); - return await Task.Run(async () => - { - if (file.Length <= 0) - { - outParm.IsSucceed = false; - outParm.Message = "请上传文件!"; - return Json(outParm); - } - 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)}"; - - - 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); - - 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}"); - var __path = Path.Combine(_path, filename); - path = System.IO.Path.ChangeExtension(path, "aks"); - - using (var stream = new FileStream(path, FileMode.OpenOrCreate)) - { - await file.CopyToAsync(stream); - } - // var __path = $"{_path}/{filename}"; - - - __path = System.IO.Path.ChangeExtension(__path, "aks"); - - - var repath = "/" + __path.Replace(@"\", @"/"); - - - outParm.IsSucceed = true; - outParm.result = new - { - hzname = hzname, - url = repath, - tile = Path.GetFileNameWithoutExtension(file.FileName), - size, - DataPath = path, - filePath = dic - }; - } - catch (Exception e) - { - outParm.IsSucceed = false; - outParm.Message = $"文件上传失败!{e.Message}"; - } - return Json(outParm); - }); + return await Upload_Files(file); } #endregion } From 76ee5f809e15cb82624b9b2906124b7475596b33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Sat, 23 Dec 2023 11:18:39 +0800 Subject: [PATCH 11/66] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BA=93=E8=BF=9E?= =?UTF-8?q?=E6=8E=A5=E5=AD=97=E7=AC=A6=E4=B8=B2=E5=9C=A8=E8=BF=90=E8=A1=8C?= =?UTF-8?q?=E6=97=B6=E8=BF=9B=E8=A1=8C=E5=8A=A0=E5=AF=86=E8=A7=A3=E5=AF=86?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Program.cs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) 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, From fca103d16de8f9b69c327f062b9a1dffe16e1e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Sat, 23 Dec 2023 11:18:52 +0800 Subject: [PATCH 12/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elight.Utility/Encrypt/DataEncryption.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Elight.Utility/Encrypt/DataEncryption.cs b/Elight.Utility/Encrypt/DataEncryption.cs index b87f403..d9ae4d3 100644 --- a/Elight.Utility/Encrypt/DataEncryption.cs +++ b/Elight.Utility/Encrypt/DataEncryption.cs @@ -138,7 +138,11 @@ namespace Elight.Utility.Encrypt { return srcFile.LastIndexOf(".encry") > 0; } - + /// + /// 解密文件,返回base64值 + /// + /// + /// public static string Decryptiones(string srcFile) { var fs = File.OpenRead(srcFile); From ab2dcd454287cd5a3d72687b6ad481f9d1006ffd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Sat, 23 Dec 2023 11:43:44 +0800 Subject: [PATCH 13/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0aks=E5=8C=85=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 22a9544..bc2162d 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2740,7 +2740,7 @@ namespace _24Hour.Controllers.Common #region 文件上传 - private string[] AllowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".zip" ,".xls",".xlsx"}; + private string[] AllowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".zip",".xlsx",".aks"}; /// /// 文件上传--附件 /// From 641e81415a65e4889dfc3677db6e3f6f2dbc12ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Sat, 23 Dec 2023 11:44:28 +0800 Subject: [PATCH 14/66] =?UTF-8?q?=E5=AF=BC=E5=85=A5=E6=97=B6=E5=81=9A?= =?UTF-8?q?=E5=8A=A0=E5=AF=86=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/LawyerArchivesController.cs | 192 +++++++++--------- 1 file changed, 100 insertions(+), 92 deletions(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 609455b..860c297 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -196,107 +196,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() - { - 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) + if (item.name != lawyerinfo.name || + item.sex != lawyerinfo.sex || + item.phone != lawyerinfo.phone || + item.departmentName != lawyerinfo.departmentName || + item.cardId != lawyerinfo.cardId) { - 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; } /// @@ -1051,8 +1051,8 @@ namespace _24Hour.Controllers.Common foreach (var item in identityphotos) { - var path = item.Replace(@"/", @"\"); - var filepath = Environment.CurrentDirectory+@"\wwwroot"+path; + 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)); @@ -1067,20 +1067,20 @@ 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(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"); var markinginput = new ApplyMarKingDto() @@ -1100,8 +1100,8 @@ namespace _24Hour.Controllers.Common sxlxdm = "1405187400001", sxlxmc = "申请阅卷", zrrmc = party, - - + + }; var applymarkingrequest = await ApplyMarKing(markinginput); @@ -1742,7 +1742,7 @@ namespace _24Hour.Controllers.Common /// /// 导入律师信息 /// - /// + /// /// [HttpGet] [Route("ImportLawyerArchivesInfo")] @@ -1756,13 +1756,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"); @@ -2098,7 +2101,12 @@ namespace _24Hour.Controllers.Common 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); //xx/xx/xx.rar + + result.result = $"/temp/{packegdirname}.aks"; result.IsSucceed = true; logger.LogInformation("step5"); return result; From 1c4acb3a19ac136a43cb7112355895a266ee3ab9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Sat, 23 Dec 2023 13:54:03 +0800 Subject: [PATCH 15/66] =?UTF-8?q?=E5=88=A0=E9=99=A4zip?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index bc2162d..6dee0d6 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2740,7 +2740,7 @@ namespace _24Hour.Controllers.Common #region 文件上传 - private string[] AllowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".zip",".xlsx",".aks"}; + private string[] AllowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp",".xlsx",".aks"}; /// /// 文件上传--附件 /// From 2f9641ee65216d5dedb95d873dccacf2ecc9a5c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Sat, 23 Dec 2023 14:30:49 +0800 Subject: [PATCH 16/66] =?UTF-8?q?=E5=AF=BC=E5=87=BA=E6=97=B6=E8=BF=94?= =?UTF-8?q?=E5=9B=9Eaks=E6=96=87=E4=BB=B6=E5=85=A8=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/LawyerArchivesController.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 860c297..a7534b9 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -30,6 +30,7 @@ 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; @@ -2105,8 +2106,9 @@ namespace _24Hour.Controllers.Common var akspath = System.IO.Path.ChangeExtension(packegzipname, ".aks"); fi.MoveTo(akspath); //xx/xx/xx.rar + FileInfo fimoved = new FileInfo(akspath); - result.result = $"/temp/{packegdirname}.aks"; + result.result = fimoved.FullName; result.IsSucceed = true; logger.LogInformation("step5"); return result; From bf5c9b4b9ec380fd6935eb144a4c3f564acaa961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Sat, 23 Dec 2023 14:31:02 +0800 Subject: [PATCH 17/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E4=B8=8B=E8=BD=BD=E6=96=87=E4=BB=B6=E7=9A=84=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 6dee0d6..5da3584 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2739,7 +2739,18 @@ namespace _24Hour.Controllers.Common #endregion #region 文件上传 + [HttpPost] + [Route("RequestDownloadFile")] + public IActionResult RequestDownloadFile(string filename) //[FromBody] dynamic Json + { + + var FileName = System.IO.Path.GetFileName(filename); + var currentDate = DateTime.Now; + var FilePath = filename; + + return new FileStreamResult(new FileStream(FilePath, FileMode.Open), "application/octet-stream") { FileDownloadName = FileName }; + } private string[] AllowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp",".xlsx",".aks"}; /// /// 文件上传--附件 From 56bf39cf6061d28c041ed725aa149c4f0934fa81 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 23 Dec 2023 14:32:09 +0800 Subject: [PATCH 18/66] =?UTF-8?q?copy=E6=97=B6=E8=A6=86=E7=9B=96=E5=8E=9F?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/LawyerArchivesController.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 860c297..676cd57 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -2008,7 +2008,7 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filepath)) { var targetfile = Path.Combine(annecdir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile); + System.IO.File.Copy(filepath, targetfile,true); } } @@ -2023,7 +2023,7 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filepath)) { var targetfile = Path.Combine(legalAidPhotoDir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile); + System.IO.File.Copy(filepath, targetfile,true); } } @@ -2037,7 +2037,7 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filepath)) { var targetfile = Path.Combine(legalAidPhotoDir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile); + System.IO.File.Copy(filepath, targetfile,true); } } var otherPhotos = item.otherPhoto.ConvertToModel>() ?? new List(); @@ -2049,7 +2049,7 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filepath)) { var targetfile = Path.Combine(legalAidPhotoDir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile); + System.IO.File.Copy(filepath, targetfile,true); } } @@ -2069,7 +2069,7 @@ namespace _24Hour.Controllers.Common var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); 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); } } //保存工作证图片 律师职业证书 @@ -2081,7 +2081,7 @@ namespace _24Hour.Controllers.Common var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); 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); } } @@ -2093,7 +2093,7 @@ namespace _24Hour.Controllers.Common 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))); + System.IO.File.Copy(filepath, Path.Combine(departmentPhotosDir, Path.GetFileName(filepath)),true); } } } @@ -2104,7 +2104,7 @@ namespace _24Hour.Controllers.Common FileInfo fi = new FileInfo(packegzipname); //xx/xx/aa.rar var akspath = System.IO.Path.ChangeExtension(packegzipname, ".aks"); - fi.MoveTo(akspath); //xx/xx/xx.rar + fi.MoveTo(akspath,true); //xx/xx/xx.rar result.result = $"/temp/{packegdirname}.aks"; result.IsSucceed = true; From 982cb5282b483d47d7fbc0a9fa722b527e23dc24 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 23 Dec 2023 14:37:51 +0800 Subject: [PATCH 19/66] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=90=88=E5=B9=B6?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/LawyerArchivesController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 1303077..124a2fd 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -2106,7 +2106,7 @@ namespace _24Hour.Controllers.Common 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"); From 393da2db49fb0691b0a01a31d3309d65523a1923 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Mon, 25 Dec 2023 00:15:00 +0800 Subject: [PATCH 20/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=9D=9Ewwwroot?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 44 +++++++++++++------ 1 file changed, 30 insertions(+), 14 deletions(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 5da3584..afde62b 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; @@ -13,14 +14,17 @@ 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.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; @@ -2739,19 +2743,34 @@ namespace _24Hour.Controllers.Common #endregion #region 文件上传 + /// + /// 通用文件下载接口 + /// + /// + /// [HttpPost] [Route("RequestDownloadFile")] public IActionResult RequestDownloadFile(string filename) //[FromBody] dynamic Json { - var FileName = System.IO.Path.GetFileName(filename); - var currentDate = DateTime.Now; - - var FilePath = filename; - - return new FileStreamResult(new FileStream(FilePath, FileMode.Open), "application/octet-stream") { FileDownloadName = FileName }; + 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(); + } } - private string[] AllowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp",".xlsx",".aks"}; + private readonly string[] AllowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".xlsx", ".aks" }; /// /// 文件上传--附件 /// @@ -2777,16 +2796,13 @@ namespace _24Hour.Controllers.Common 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); @@ -2832,10 +2848,10 @@ namespace _24Hour.Controllers.Common [Route("GetImageFile")] public async Task GetImageFile(string file) { - + Result result = new Result(); var urlpath = file.Replace("/", @"\"); - var path = Path.Combine(Environment.CurrentDirectory, "wwwroot"+urlpath); + var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); if (System.IO.File.Exists(path)) { var str = Elight.Utility.Encrypt.DataEncryption.Decryptiones(path); @@ -2888,7 +2904,7 @@ namespace _24Hour.Controllers.Common }); result.IsSucceed = true; result.result = data; - + } catch { From 8b5e3655616912d1cad71937def89cb67f37d383 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Mon, 25 Dec 2023 00:15:23 +0800 Subject: [PATCH 21/66] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=A4=B4=E5=83=8F=E4=B8=BA=E5=8A=A0=E5=AF=86=E5=90=8E=E5=9C=B0?= =?UTF-8?q?=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/LoginController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24Hour/Controllers/LoginController.cs b/24Hour/Controllers/LoginController.cs index 903d2e1..0b48346 100644 --- a/24Hour/Controllers/LoginController.cs +++ b/24Hour/Controllers/LoginController.cs @@ -512,7 +512,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; @@ -554,7 +554,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(); @@ -598,7 +598,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(); From 20d37f66ad4087420209f71b2b176ed4fe113948 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Mon, 25 Dec 2023 00:48:34 +0800 Subject: [PATCH 22/66] =?UTF-8?q?=E5=8A=A0=E5=AF=86=E5=BE=AE=E4=BF=A1appid?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/WechatMessagerClient.cs | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/24Hour/WechatMessagerClient.cs b/24Hour/WechatMessagerClient.cs index b559baf..8c79df8 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 @@ -56,15 +58,14 @@ namespace _24Hour 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}"); } //小程序获取openId public async Task GetOpenId(string code) From 42d7c3770c68f581b7a4ed8758be40bef5978508 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 Dec 2023 00:49:34 +0800 Subject: [PATCH 23/66] =?UTF-8?q?=E5=A4=8D=E5=88=B6=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E6=97=B6=E8=A6=86=E7=9B=96=E5=8E=9F=E6=9C=89=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/LawyerArchivesController.cs | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 124a2fd..c506910 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -2009,7 +2009,7 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filepath)) { var targetfile = Path.Combine(annecdir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile,true); + System.IO.File.Copy(filepath, targetfile, true); } } @@ -2024,7 +2024,7 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filepath)) { var targetfile = Path.Combine(legalAidPhotoDir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile,true); + System.IO.File.Copy(filepath, targetfile, true); } } @@ -2038,7 +2038,7 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filepath)) { var targetfile = Path.Combine(legalAidPhotoDir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile,true); + System.IO.File.Copy(filepath, targetfile, true); } } var otherPhotos = item.otherPhoto.ConvertToModel>() ?? new List(); @@ -2050,7 +2050,7 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filepath)) { var targetfile = Path.Combine(legalAidPhotoDir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile,true); + System.IO.File.Copy(filepath, targetfile, true); } } @@ -2062,7 +2062,7 @@ 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) @@ -2070,7 +2070,7 @@ namespace _24Hour.Controllers.Common var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); if (System.IO.File.Exists(filepath)) { - System.IO.File.Copy(filepath, Path.Combine(cardidDir, Path.GetFileName(filepath)),true); + System.IO.File.Copy(filepath, Path.Combine(cardidDir, Path.GetFileName(filepath)), true); } } //保存工作证图片 律师职业证书 @@ -2082,7 +2082,7 @@ namespace _24Hour.Controllers.Common var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); if (System.IO.File.Exists(filepath)) { - System.IO.File.Copy(filepath, Path.Combine(identityphotosDir, Path.GetFileName(filepath)),true); + System.IO.File.Copy(filepath, Path.Combine(identityphotosDir, Path.GetFileName(filepath)), true); } } @@ -2094,7 +2094,7 @@ namespace _24Hour.Controllers.Common 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)),true); + System.IO.File.Copy(filepath, Path.Combine(departmentPhotosDir, Path.GetFileName(filepath)), true); } } } @@ -2105,9 +2105,9 @@ namespace _24Hour.Controllers.Common 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 + fi.MoveTo(akspath, true); //xx/xx/xx.rar FileInfo fimoved = new FileInfo(akspath); - result.result = fimoved.FullName; + result.result = fimoved.FullName; result.IsSucceed = true; logger.LogInformation("step5"); return result; From e61c44bfe0bb4c7d265120979561b5c82f9fce42 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 Dec 2023 00:49:52 +0800 Subject: [PATCH 24/66] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E4=B8=BAget?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 5da3584..2a7fbc0 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2739,7 +2739,7 @@ namespace _24Hour.Controllers.Common #endregion #region 文件上传 - [HttpPost] + [HttpGet] [Route("RequestDownloadFile")] public IActionResult RequestDownloadFile(string filename) //[FromBody] dynamic Json { From a2a142790710061764896d0ca1f15bcfe6c67678 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Mon, 25 Dec 2023 01:07:48 +0800 Subject: [PATCH 25/66] =?UTF-8?q?=E5=8C=97=E5=85=B3=E5=B0=8F=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F=E4=BF=A1=E6=81=AF=E5=8A=A0=E5=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/appsettings.json | 49 ++++++++++++++++++++++++++++++++--------- 1 file changed, 39 insertions(+), 10 deletions(-) diff --git a/24Hour/appsettings.json b/24Hour/appsettings.json index baed712..2803a2c 100644 --- a/24Hour/appsettings.json +++ b/24Hour/appsettings.json @@ -8,7 +8,7 @@ "AllowedHosts": "*", "ConnectionStrings": { "DBType": "MySQL", - "MySQLConnString": "server=192.168.0.251;Database=equipmentrearend;Uid=root;Pwd=sa@admin;Allow User Variables=True;SslMode=none;AllowPublicKeyRetrieval=True;" + "MySQLConnString": "tLGFWuP+rNDp6VcJr4/KKgj9MbPa4kzlHiNrt5s9NsFamf7YBhpnnEzaQn8UBodEZyWXC4zZ3fw9lxF9ExH4IpMwg7zxEUBxh0IcVi0VK9XDP4Og7a335pOhdpf1mmNJ+Xqm9ozPLVV+Pie+r8lUNY1fSSHgpnQVYcRW2EmwHtsOecfucX0E9Emlai7K7Lox" }, //JwtConfig "JwtConfiguration": { @@ -52,24 +52,53 @@ //"miniprogram_state": "trial", //"templateIdSuccess": "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY", //"templateIdFail": "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ" - //北关 - "appid": "wxdf1bb4a9a6331665", - "secret": "4a19512fbbc4c4658fdffcdbfa1fc8f4", - "secid": "4a19512fbbc4c4658fdffcdbfa1fc8f4", + + //北关加密 + "appid": "oVOrWaNhXsGehydieMo8c1Wlc100QHmc1uaQqOh6lGI=", + "secret": "MFcJJDAw0DylG1WFupTiv3jaRbEm3I6z2fZYnqXdcjxBmKtAgUh8ITocgrxAStfI", + "secid": "MFcJJDAw0DylG1WFupTiv3jaRbEm3I6z2fZYnqXdcjxBmKtAgUh8ITocgrxAStfI", "miniprogram_state": "trial", - "templateIdSuccess": "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY", - "templateIdFail": "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ" + "templateIdSuccess": "74zzGqnjFmJMyRX0unBjHW9CEma7/MS1QZLM0B8SAvhG8iehpigfPX+ECNe296hT", + "templateIdFail": "MqJDCLQDp/aXYygOFlZeaaDZX/joZCuoOQCh2x7Mc4lGSfADKWP4mJJXSFTeG0D2" + ////北关 + //"appid": "wxdf1bb4a9a6331665", + //"secret": "4a19512fbbc4c4658fdffcdbfa1fc8f4", + //"secid": "4a19512fbbc4c4658fdffcdbfa1fc8f4", + //"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" //北关微信公众号 - "appid": "wx3a65effe2f8808c3", - "secret": "e645ec6643cd844ac1129b2eb7680477", - "templateId": "cwSTQjLRh-xhnpz41jGlPxMty_EOJBlyjuBNGEP6FyU" + //"appid": "wx3a65effe2f8808c3", + //"secret": "e645ec6643cd844ac1129b2eb7680477", + //"templateId": "cwSTQjLRh-xhnpz41jGlPxMty_EOJBlyjuBNGEP6FyU" + + + + //赞皇微信公众号加密 + //"appid": "SEgCQ5R6WH9aLMnK9l3qaCqwlZ9bhbIwAlWo4KrA2pM=", + //"secret": "4TasYt254i7PivEWlbj+XJlx5PL1NaWeKB+VfF9LX3lBmKtAgUh8ITocgrxAStfI", + //预约消息提醒 + //"templateId": "zz0e8ZoMyS/8Ql6A9AsaZbrPX5DIY5XFJiPRYF5khc9F8XUR4khnkLP2F70pxFFt" + //律师注册审核消息提醒 + //"templateId1": "qahnV2kjkI5vaLkcUpqusCYJHw+oXHD2kyLgDkuvTY+u6dvEKpLWFZcKSNw8fg93" + //律师注册审核结果提醒 + //"templateId2": "a+Q/iKE1t0zUqPcMr53i5HH6iFb3taN57DALh667ET2LZoXp4NPg6IS5M0BqfLXI" + //赞皇微信公众号 //"appid": "wxe06040af55282ee8", //"secret": "8ffcdb30277eba9f4861f39a66990237", From 900a8c7a52b2a63dd6fc53e2a079a8adb7c3faf0 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 Dec 2023 01:08:39 +0800 Subject: [PATCH 26/66] =?UTF-8?q?=E5=8A=A0=E5=AF=86232=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/appsettings.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/24Hour/appsettings.json b/24Hour/appsettings.json index baed712..b13fbfc 100644 --- a/24Hour/appsettings.json +++ b/24Hour/appsettings.json @@ -8,7 +8,7 @@ "AllowedHosts": "*", "ConnectionStrings": { "DBType": "MySQL", - "MySQLConnString": "server=192.168.0.251;Database=equipmentrearend;Uid=root;Pwd=sa@admin;Allow User Variables=True;SslMode=none;AllowPublicKeyRetrieval=True;" + "MySQLConnString": "6ThNXFEBPVFN1FYh3Yz5mgwoFXMcVagR9nq4caRpxJrhTnx25XmuwFFelLMb/9FWaeaOAHGCMHnFw+sT0DhbOeroL/SF0vNZlfBdBZXy4nUP3gy9TNbwZDi0cCV36AmYirKTv3ZksZNt4xhJDtF58V9e6rciz0JLapFo3Dz9zIwj0GMsHDRIQfHl8buVyhpx" }, //JwtConfig "JwtConfiguration": { @@ -53,9 +53,17 @@ //"templateIdSuccess": "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY", //"templateIdFail": "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ" //北关 - "appid": "wxdf1bb4a9a6331665", - "secret": "4a19512fbbc4c4658fdffcdbfa1fc8f4", - "secid": "4a19512fbbc4c4658fdffcdbfa1fc8f4", + //"appid": "wxdf1bb4a9a6331665", + //"secret": "4a19512fbbc4c4658fdffcdbfa1fc8f4", + //"secid": "4a19512fbbc4c4658fdffcdbfa1fc8f4", + //"miniprogram_state": "trial", + //"templateIdSuccess": "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY", + //"templateIdFail": "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ", + + //公司测试 + "appid": "wx2673e6515c83973a", + "secret": "fd408c161a09e5ff1c59165dfd0434df", + "secid": "fd408c161a09e5ff1c59165dfd0434df", "miniprogram_state": "trial", "templateIdSuccess": "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY", "templateIdFail": "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ" From 7d1dd1a532f7054e99ef742b87e37c15642fe0bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Mon, 25 Dec 2023 01:16:13 +0800 Subject: [PATCH 27/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8A=A0=E5=AF=86?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/appsettings.json | 39 +++++++++++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 10 deletions(-) diff --git a/24Hour/appsettings.json b/24Hour/appsettings.json index dcf27ab..1a483e2 100644 --- a/24Hour/appsettings.json +++ b/24Hour/appsettings.json @@ -52,30 +52,46 @@ //"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": "wx2673e6515c83973a", - "secret": "fd408c161a09e5ff1c59165dfd0434df", - "secid": "fd408c161a09e5ff1c59165dfd0434df", + //北关 + + //公司 + //公司测试加密 + "appid": "G72DqIT+Qwa6Rxwkk5RnxeV11XTGa4pztVUnz0R6WGc=", + "secret": "AnMEKbz0Yf7fyJYPFIvp7uL2SVP8Ls5fJb3lLKwLiJFBmKtAgUh8ITocgrxAStfI", + "secid": "AnMEKbz0Yf7fyJYPFIvp7uL2SVP8Ls5fJb3lLKwLiJFBmKtAgUh8ITocgrxAStfI", "miniprogram_state": "trial", "templateIdSuccess": "74zzGqnjFmJMyRX0unBjHW9CEma7/MS1QZLM0B8SAvhG8iehpigfPX+ECNe296hT", "templateIdFail": "MqJDCLQDp/aXYygOFlZeaaDZX/joZCuoOQCh2x7Mc4lGSfADKWP4mJJXSFTeG0D2" - ////北关 - //"appid": "wxdf1bb4a9a6331665", - //"secret": "4a19512fbbc4c4658fdffcdbfa1fc8f4", - //"secid": "4a19512fbbc4c4658fdffcdbfa1fc8f4", + //公司测试 + //"appid": "wx2673e6515c83973a", + //"secret": "fd408c161a09e5ff1c59165dfd0434df", + //"secid": "fd408c161a09e5ff1c59165dfd0434df", //"miniprogram_state": "trial", //"templateIdSuccess": "XgrMTq1gwDfMJI6vN0jsSEv3xGy7v3amh0JMWj4SnAY", //"templateIdFail": "bfA-t5EN4pkQzAOS17SRPRKvmMteaJt0kw3YKIcovIQ" + //公司 + + }, "WechatGzh": { + //公司 //公司微信公众号 //"appid": "wx1f5c662edbe3b627", //"secret": "a892658a8d21f4e97cbb1ec1880b78fd", @@ -84,7 +100,9 @@ //"appid": "g+AHBYf5Wfd+NUU/N500tlJr21BeI/WfCWMGs7z23fs=", //"secret": "HvGLrth4Id7Dp9KCeqhHn4Yt58Zcpz3rntg7tL9PeGRBmKtAgUh8ITocgrxAStfI", //"templateId": "QauTKHvz3cQPHSt6nPSXGFyjeEyT9p22gIBVyECrszHXZrNqU3tZnb2+il8gSXmA", + //公司 + //北关 //北关微信公众号加密版 "appid": "RECYZUdJHpWAwXo08m/QJuIjHfS6q5UrCJz+IgmywFY=", "secret": "e51ZCctUQowt/VJgla/AwbYI4iPcu7yy7YphDTylwYJBmKtAgUh8ITocgrxAStfI", @@ -93,9 +111,9 @@ //"appid": "wx3a65effe2f8808c3", //"secret": "e645ec6643cd844ac1129b2eb7680477", //"templateId": "cwSTQjLRh-xhnpz41jGlPxMty_EOJBlyjuBNGEP6FyU" + //北关 - - + //赞皇 //赞皇微信公众号加密 //"appid": "SEgCQ5R6WH9aLMnK9l3qaCqwlZ9bhbIwAlWo4KrA2pM=", //"secret": "4TasYt254i7PivEWlbj+XJlx5PL1NaWeKB+VfF9LX3lBmKtAgUh8ITocgrxAStfI", @@ -115,6 +133,7 @@ //"templateId1": "cCIkyiWffdAJEX4QQyxsmdaPt-JKib5I4rhCflwcebU" //律师注册审核结果提醒 //"templateId2": "68FkacsufQ5klTZTM4qFcZHfQrsDrAQeiu6R0Chb6B8" + //赞皇 }, "CaseTwenty": { "SysAddress": "http://127.0.0.1:5194", From 8c06bbfee254f9b4bb1cd7831abe668068668f2a Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 Dec 2023 03:16:10 +0800 Subject: [PATCH 28/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E8=87=B31.0.3.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/24Hour.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24Hour/24Hour.csproj b/24Hour/24Hour.csproj index 79cf270..c287244 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.3 + 1.0.3.3 From 523e41d766c8ccb82cc1720a440c646f49ea7ab0 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 Dec 2023 17:14:55 +0800 Subject: [PATCH 29/66] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E6=8B=BC=E6=8E=A5=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 26 +++++++++++-------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 0a26c01..bb2c4ec 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -22,6 +22,7 @@ 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; @@ -2755,9 +2756,9 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filename)) { - filename = filename.Replace(@"\\",@"\"); + filename = filename.Replace(@"\\", @"\"); var data = System.IO.Path.Combine(Environment.CurrentDirectory, "wwwroot"); - if (filename.Contains(data)==false) + if (filename.Contains(data) == false) { return BadRequest(); } @@ -2796,7 +2797,7 @@ namespace _24Hour.Controllers.Common var fname = $@"{file.FileName}"; var hzname = $"{Path.GetExtension(fname)}"; - + if (AllowedExtensions.Contains(hzname.ToLower()) == false) { outParm.IsSucceed = false; @@ -2850,8 +2851,8 @@ namespace _24Hour.Controllers.Common { Result result = new Result(); - var urlpath = file.Replace("/", @"\"); - var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); + 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); @@ -2875,11 +2876,13 @@ namespace _24Hour.Controllers.Common { try { + var islinux = System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(OSPlatform.Linux); //根据输入url获取base64值 var getstr = (string s) => { - var urlpath = s.Replace("/", @"\"); - var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); + 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); @@ -2892,19 +2895,20 @@ namespace _24Hour.Controllers.Common //根据输入url获取文件是否存在 var getexist = (string s) => { - var urlpath = s.Replace("/", @"\"); - var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" + urlpath); + + 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) + BaseStr = getstr(x), + }); result.IsSucceed = true; result.result = data; - } catch { From 068e01aef289eb46d4522baa2ffd0ad8320ac731 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 Dec 2023 17:16:31 +0800 Subject: [PATCH 30/66] =?UTF-8?q?=E5=9B=9E=E4=BC=A02.0=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E6=97=B6=20=E6=B7=BB=E5=8A=A0=E8=A7=A3=E5=AF=86=E5=A4=84?= =?UTF-8?q?=E7=90=86=EF=BC=8C=E4=BC=98=E5=8C=96=E5=9B=BE=E7=89=87=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E5=87=BD=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/LawyerArchivesController.cs | 87 +++++++------------ 1 file changed, 31 insertions(+), 56 deletions(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index c506910..4154a03 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -26,6 +26,7 @@ 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; @@ -1051,12 +1052,12 @@ 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); await twentyClient.UploadImage(new UploadDto() { Bmsah = registerinfo.bmsah, @@ -1068,7 +1069,6 @@ namespace _24Hour.Controllers.Common ImageStr = basestr }); } - } } }; @@ -2000,60 +2000,30 @@ 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 packetPhotoField = (string? photostring, string? dirname) => { - var filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + file.Replace("/", @"\"); - if (System.IO.File.Exists(filepath)) + if (string.IsNullOrEmpty(photostring)) { - var targetfile = Path.Combine(annecdir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile, true); - } - } - - 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, true); - } - } - - - 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 filepath = Path.Combine(Environment.CurrentDirectory, "wwwroot") + relationshipProofPhoto.Replace("/", @"\"); - if (System.IO.File.Exists(filepath)) - { - var targetfile = Path.Combine(legalAidPhotoDir, Path.GetFileName(filepath)); - System.IO.File.Copy(filepath, targetfile, true); + 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, true); + 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"); } //存储用户的相关附件 foreach (var item in users) @@ -2067,7 +2037,8 @@ namespace _24Hour.Controllers.Common 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)), true); @@ -2079,7 +2050,9 @@ 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)), true); @@ -2091,7 +2064,9 @@ namespace _24Hour.Controllers.Common if (Directory.Exists(departmentPhotosDir) == false) Directory.CreateDirectory(departmentPhotosDir); foreach (var file in departmentPhotos) { - 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(departmentPhotosDir, Path.GetFileName(filepath)), true); From 8ef5537badff82a1740d93b4ebb1a50c62b7514d Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 Dec 2023 17:17:26 +0800 Subject: [PATCH 31/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E8=87=B31.0.3.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/24Hour.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24Hour/24Hour.csproj b/24Hour/24Hour.csproj index c287244..1455cf9 100644 --- a/24Hour/24Hour.csproj +++ b/24Hour/24Hour.csproj @@ -8,8 +8,8 @@ True e485308c-2f05-470b-b0a4-68f1ec2b3412 Linux - 1.0.3.3 - 1.0.3.3 + 1.0.3.6 + 1.0.3.6 From c9418a88c7e5926114da588575f359131269a866 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 Dec 2023 17:18:48 +0800 Subject: [PATCH 32/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E8=87=B31.0.3.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/24Hour.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24Hour/24Hour.csproj b/24Hour/24Hour.csproj index 1455cf9..2369d50 100644 --- a/24Hour/24Hour.csproj +++ b/24Hour/24Hour.csproj @@ -8,8 +8,8 @@ True e485308c-2f05-470b-b0a4-68f1ec2b3412 Linux - 1.0.3.6 - 1.0.3.6 + 1.0.3.7 + 1.0.3.7 From bd3991a5d324ee29adf6ffff43583117d688c737 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Tue, 26 Dec 2023 11:45:26 +0800 Subject: [PATCH 33/66] =?UTF-8?q?=E7=BB=9F=E4=B8=80=E5=9C=A8=E6=9E=84?= =?UTF-8?q?=E9=80=A0=E5=87=BD=E6=95=B0=E4=B8=AD=E8=A7=A3=E5=AF=86=E5=B0=8F?= =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E9=85=8D=E7=BD=AE=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/WechatMessagerClient.cs | 35 +++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/24Hour/WechatMessagerClient.cs b/24Hour/WechatMessagerClient.cs index 8c79df8..98496df 100644 --- a/24Hour/WechatMessagerClient.cs +++ b/24Hour/WechatMessagerClient.cs @@ -21,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; @@ -56,7 +59,7 @@ namespace _24Hour httpCliet.DefaultRequestHeaders.Add("Accept", "application/json"); httpCliet.DefaultRequestHeaders.Add("User-Agent", "HttpClientFactory-Sample"); httpCliet.DefaultRequestHeaders.ConnectionClose = true; - _configuration = configuration; + appid =AES.Decrypt( $"{configuration.GetSection("Wechat:appid").Value}"); secret = AES.Decrypt($"{configuration.GetSection("Wechat:secret").Value}"); @@ -66,6 +69,9 @@ namespace _24Hour 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) @@ -166,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 { @@ -239,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 { @@ -389,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" @@ -467,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" From e8c3fb7704d0a03b1b564e517922b530f1760ed8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Tue, 26 Dec 2023 11:45:55 +0800 Subject: [PATCH 34/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0try=E9=98=B2=E6=AD=A2?= =?UTF-8?q?=E5=9C=A8=E8=A7=A3=E5=AF=86=E8=BF=87=E7=A8=8B=E4=B8=AD=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elight.Utility/Encrypt/AES.cs | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) 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 ""; + } } } } From e314273e4d578cd399cfa964a1fb0fbf882a4dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Tue, 26 Dec 2023 11:46:21 +0800 Subject: [PATCH 35/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E5=8F=AA1.0.3.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/24Hour.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24Hour/24Hour.csproj b/24Hour/24Hour.csproj index 2369d50..680bbbf 100644 --- a/24Hour/24Hour.csproj +++ b/24Hour/24Hour.csproj @@ -8,8 +8,8 @@ True e485308c-2f05-470b-b0a4-68f1ec2b3412 Linux - 1.0.3.7 - 1.0.3.7 + 1.0.3.8 + 1.0.3.8 From 0cd373b3bfb0a0c02c42281084c48240bb1de2ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Tue, 26 Dec 2023 12:57:26 +0800 Subject: [PATCH 36/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=B4=A6=E5=8F=B7?= =?UTF-8?q?=E6=97=B6=E8=AE=BE=E7=BD=AE=E9=BB=98=E8=AE=A4=E5=A4=B4=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/system/SystemControllerController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24Hour/Controllers/system/SystemControllerController.cs b/24Hour/Controllers/system/SystemControllerController.cs index f04b444..fac2e69 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(); From f67d919f1233d55c11faefbee7e55f0013ae8465 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Tue, 26 Dec 2023 15:21:39 +0800 Subject: [PATCH 37/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E5=8F=AA1.0.3.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/24Hour.csproj | 4 ++-- 24Hour/appsettings.json | 9 ++++++++- 24Hour/build/dockerbuild.txt | 4 ++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/24Hour/24Hour.csproj b/24Hour/24Hour.csproj index 680bbbf..f391ff5 100644 --- a/24Hour/24Hour.csproj +++ b/24Hour/24Hour.csproj @@ -8,8 +8,8 @@ True e485308c-2f05-470b-b0a4-68f1ec2b3412 Linux - 1.0.3.8 - 1.0.3.8 + 1.0.3.9 + 1.0.3.9 diff --git a/24Hour/appsettings.json b/24Hour/appsettings.json index 1a483e2..6f05551 100644 --- a/24Hour/appsettings.json +++ b/24Hour/appsettings.json @@ -106,11 +106,18 @@ //北关微信公众号加密版 "appid": "RECYZUdJHpWAwXo08m/QJuIjHfS6q5UrCJz+IgmywFY=", "secret": "e51ZCctUQowt/VJgla/AwbYI4iPcu7yy7YphDTylwYJBmKtAgUh8ITocgrxAStfI", - "templateId": "Kmo3TKZfOrGe95+NVto2SmH93A0x1DgjtVjBIy3I3o46tood38KiDHqI61CAk382" + "templateId": "Kmo3TKZfOrGe95+NVto2SmH93A0x1DgjtVjBIy3I3o46tood38KiDHqI61CAk382", + //律师注册审核消息提醒 + "templateId1": "cCIkyiWffdAJEX4QQyxsmdaPt-JKib5I4rhCflwcebU", + //律师注册审核结果提醒 + "templateId2": "68FkacsufQ5klTZTM4qFcZHfQrsDrAQeiu6R0Chb6B8" + //北关微信公众号 //"appid": "wx3a65effe2f8808c3", //"secret": "e645ec6643cd844ac1129b2eb7680477", //"templateId": "cwSTQjLRh-xhnpz41jGlPxMty_EOJBlyjuBNGEP6FyU" + //"templateId": "cwSTQjLRh-xhnpz41jGlPxMty_EOJBlyjuBNGEP6FyU" + //"templateId2": "cwSTQjLRh-byAZoJ5yt3ieIUiWBZSdrT/oObHO49dLftjvsdGW3Gvsf/uTC5f0SvFU2mhrq9QQ" //北关 //赞皇 diff --git a/24Hour/build/dockerbuild.txt b/24Hour/build/dockerbuild.txt index 9bcb86b..3ff206c 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 save -o d://twentyfoursvc.1.0.3.7.tar twentyfoursvc:1.0.3.7 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 @@ -190,7 +190,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 From 2c752e4bfc937903a467f73fe5de1bfdd9da0af5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Tue, 26 Dec 2023 15:23:43 +0800 Subject: [PATCH 38/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E5=8F=AA1.0.3.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/24Hour.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24Hour/24Hour.csproj b/24Hour/24Hour.csproj index 680bbbf..f391ff5 100644 --- a/24Hour/24Hour.csproj +++ b/24Hour/24Hour.csproj @@ -8,8 +8,8 @@ True e485308c-2f05-470b-b0a4-68f1ec2b3412 Linux - 1.0.3.8 - 1.0.3.8 + 1.0.3.9 + 1.0.3.9 From 2610faea31344f29bc8cb5b89c12cec6571e814e Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 26 Dec 2023 15:24:48 +0800 Subject: [PATCH 39/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=85=AC=E5=8F=B8?= =?UTF-8?q?=E9=85=8D=E9=85=8D=E7=BD=AE=E5=8F=91=E5=B8=83=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/build/dockerbuild.txt | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/24Hour/build/dockerbuild.txt b/24Hour/build/dockerbuild.txt index 9bcb86b..2ef7456 100644 --- a/24Hour/build/dockerbuild.txt +++ b/24Hour/build/dockerbuild.txt @@ -30,19 +30,30 @@ docker run --name twentyfoursvc1.0.2.3 -d twentyfoursvc:1.0.2.3 - +公司252测试 docker load -i twentyfoursvc1019.tar -docker run --name twentyfoursvc1.0.2.2 \ + +内网运行 +docker run --name twentyfoursvc_1.0.3.7_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/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.7 + +外网运行 +docker run --name twentyfoursvc_1.0.3.7_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.7 From 9430e190212ff93a94c9f1b737cdebebfa1019d0 Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 26 Dec 2023 15:52:16 +0800 Subject: [PATCH 40/66] =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=97=B6=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E7=8A=B6=E6=80=81=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/LawyerArchivesController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 4154a03..1a4604e 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -403,6 +403,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) From 6f6fba90d38bafc29be6f4b4da5be484440bb53c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Wed, 27 Dec 2023 17:59:19 +0800 Subject: [PATCH 41/66] =?UTF-8?q?=E5=9B=9E=E4=BC=A02.0=E6=97=B6=E9=9C=80?= =?UTF-8?q?=E8=A6=81=E6=8C=87=E5=AE=9A=E5=9B=BE=E7=89=87=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E4=B8=BAjpg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/LawyerArchivesController.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 1a4604e..165546c 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -1059,10 +1059,12 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filepath)) { var basestr = Elight.Utility.Encrypt.DataEncryption.Decryptiones(filepath); + var filename = Path.GetFileName(filepath); + filename = Path.ChangeExtension(filename, ".jpg"); await twentyClient.UploadImage(new UploadDto() { Bmsah = registerinfo.bmsah, - FileName = Path.GetFileName(filepath), + FileName = filename, Code = typecode, Bhdlbm = registerinfo.bhdlbh, UnitCode = registerinfo.dwbm, From 709bc35e1ff933f671b8116d04985fd7d1775223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Wed, 27 Dec 2023 18:00:19 +0800 Subject: [PATCH 42/66] =?UTF-8?q?=E5=B0=86=E5=BE=8B=E5=B8=88=E4=BA=8B?= =?UTF-8?q?=E5=8A=A1=E6=89=80=E8=AF=81=E6=98=8E=E7=A7=BB=E5=8A=A8=E5=88=B0?= =?UTF-8?q?=E5=BE=8B=E5=B8=88=E9=A2=84=E7=BA=A6=E6=9C=8D=E5=8A=A1=EF=BC=8C?= =?UTF-8?q?=E5=BE=8B=E6=89=80=E8=AF=81=E5=90=8D=E4=B8=8E=E9=A2=84=E7=BA=A6?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E7=BB=91=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elight.Entity/AppMode/App_LawyerServicesModel.cs | 5 ++++- Elight.Entity/SystemModel/App_Sys_UserModel.cs | 4 ---- 2 files changed, 4 insertions(+), 5 deletions(-) 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; } /// /// 单位同意信用代码 From bb8cb030094ea0ca4b6c5005a6e2d4abd36f6c3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Wed, 27 Dec 2023 18:17:59 +0800 Subject: [PATCH 43/66] =?UTF-8?q?=E8=BF=81=E7=A7=BB=E5=BE=8B=E5=B8=88?= =?UTF-8?q?=E4=BA=8B=E5=8A=A1=E6=89=80=E8=AF=81=E6=98=8E=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E8=87=B3=E5=BE=8B=E5=B8=88=E6=9C=8D=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/LawyerArchivesController.cs | 42 +++--- 24Hour/Controllers/LoginController.cs | 2 - .../system/SystemControllerController.cs | 124 +++++++++--------- 3 files changed, 87 insertions(+), 81 deletions(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 165546c..86fa6c7 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -1079,7 +1079,7 @@ namespace _24Hour.Controllers.Common await UploadPhoto(lawyer.identityphoto, "1423000000100"); - await UploadPhoto(lawyer.departmentPhoto, "1423000000200"); + await UploadPhoto(lawyersvc.departmentPhoto, "1423000000200"); await UploadPhoto(lawyersvc.annex, "1423000000300"); await UploadPhoto(lawyersvc.legalAidPhoto, "1423000000400"); await UploadPhoto(lawyer.cardIdphoto, "1423000000500"); @@ -1824,7 +1824,7 @@ namespace _24Hour.Controllers.Common { userim.cardIdphoto = cardids; userim.identityphoto = files; - userim.departmentPhoto = departments; + userim.unitCode = _userdata.unitCode; userim.identity = "律师"; userim.IsDeleted = 0; @@ -1836,7 +1836,6 @@ namespace _24Hour.Controllers.Common { user.cardIdphoto = cardids; user.identityphoto = files; - user.departmentPhoto = departments; user.unitCode = _userdata.unitCode; user.identity = "律师"; user.IsDeleted = 0; @@ -1846,7 +1845,6 @@ namespace _24Hour.Controllers.Common { x.cardIdphoto, x.identityphoto, - x.departmentPhoto, x.unitCode, x.identity, x.IsDeleted @@ -1894,6 +1892,14 @@ namespace _24Hour.Controllers.Common .ToList() .ConvertToJsonStr(); + var departmentPhoto = Path.Combine(ziplawyersvcs, lawyersvc.Id, "departmentPhoto"); + var departmentPhotos = new DirectoryInfo(departmentPhoto) + .GetFiles() + .Select(x => "/CaseFile/imports/" + Path.GetRelativePath(dir, x.FullName) + .Replace(@"\", @"/")) + .ToList() + .ConvertToJsonStr(); + if (svc == null) { var lawyer = await _db.Queryable() @@ -1908,6 +1914,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(); @@ -2027,6 +2034,7 @@ namespace _24Hour.Controllers.Common packetPhotoField(item?.legalAidPhoto, "legalAidPhoto"); packetPhotoField(item?.relationshipProofPhoto, "relationshipProofPhoto"); packetPhotoField(item?.otherPhoto, "otherPhoto"); + packetPhotoField(item?.departmentPhoto, "departmentPhoto"); } //存储用户的相关附件 foreach (var item in users) @@ -2062,19 +2070,19 @@ namespace _24Hour.Controllers.Common } } - 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); - } - } + ////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); diff --git a/24Hour/Controllers/LoginController.cs b/24Hour/Controllers/LoginController.cs index 0b48346..5841b14 100644 --- a/24Hour/Controllers/LoginController.cs +++ b/24Hour/Controllers/LoginController.cs @@ -446,7 +446,6 @@ namespace _24Hour.Controllers unitCode = date.unitCode, token = tokenString, openId = date.wechatId, - departmentPhoto = date.departmentPhoto, identityphoto = date.identityphoto, cardIdphoto = date.cardIdphoto, departmentName = date.departmentName, @@ -522,7 +521,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) diff --git a/24Hour/Controllers/system/SystemControllerController.cs b/24Hour/Controllers/system/SystemControllerController.cs index fac2e69..c0b144c 100644 --- a/24Hour/Controllers/system/SystemControllerController.cs +++ b/24Hour/Controllers/system/SystemControllerController.cs @@ -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; } From 1c5746f3ac84d384f820e3127901d5c34b485fe6 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 27 Dec 2023 18:19:02 +0800 Subject: [PATCH 44/66] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E8=BF=94=E5=9B=9E=E5=80=BC=EF=BC=8C=E4=BE=9B?= =?UTF-8?q?=E5=89=8D=E7=AB=AF=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/LoginController.cs | 654 +++++++++++++------------- 1 file changed, 330 insertions(+), 324 deletions(-) diff --git a/24Hour/Controllers/LoginController.cs b/24Hour/Controllers/LoginController.cs index 0b48346..7f084a2 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,134 @@ 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, + 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 = "΢δȨע˺ţ"; + 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; @@ -580,7 +586,7 @@ namespace _24Hour.Controllers ret.IsSucceed = true; ret.result = "ӳɹ"; } - } + } } else { @@ -606,57 +612,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 +677,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 +743,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 +775,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 From 90dab7291a50deef0c2cce49df1376d9e535ae72 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 27 Dec 2023 18:26:22 +0800 Subject: [PATCH 45/66] =?UTF-8?q?=E6=97=A0=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/LoginController.cs | 646 +++++++++++++------------- 1 file changed, 323 insertions(+), 323 deletions(-) diff --git a/24Hour/Controllers/LoginController.cs b/24Hour/Controllers/LoginController.cs index 6fdf6fa..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,22 +372,22 @@ 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) { @@ -403,102 +403,102 @@ namespace _24Hour.Controllers 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 = $"˺δȨ޷¼ϵԱ"; + } + if (date.usertype == 0 && date.becurrent == 1) + { + ret.IsSucceed = false; + ret.Message = $"˺δȨ޷¼ϵԱ"; ret.result = "˺δȨ޷¼"; - 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, - 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; + } + #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 + } + 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; @@ -584,7 +584,7 @@ namespace _24Hour.Controllers ret.IsSucceed = true; ret.result = "ӳɹ"; } - } + } } else { @@ -610,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) // { @@ -675,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; @@ -741,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 @@ -773,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 From d538d2c3bc879a9cc7ad2f1e44dd27460a7ecca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Wed, 27 Dec 2023 18:56:02 +0800 Subject: [PATCH 46/66] =?UTF-8?q?=E6=8F=90=E4=BE=9B=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=8C=85=E6=96=87=E4=BB=B6=E7=9A=84=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=EF=BC=8C=E7=94=A8=E6=9D=A5=E6=B8=85=E7=90=86=E4=B8=B4?= =?UTF-8?q?=E6=97=B6=E7=9A=84=E5=8C=85=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index bb2c4ec..cd2cac7 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2771,6 +2771,43 @@ namespace _24Hour.Controllers.Common return BadRequest(); } } + + /// + /// 通用文件下载接口 + /// + /// + /// + [HttpGet] + [Route("RequestDeleteFile")] + public Result RequestDeleteFile(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 Result.Error("操作失败" + "不可删除"); + } + var FileName = System.IO.Path.GetFileName(filename); + var FilePath = filename; + try + { + System.IO.File.Delete(filename); + } + catch(Exception ex) + { + return Result.Error("操作失败"+ex.Message); + } + + return Result.Success("操作成功"); + } + else + { + return Result.Error("操作失败" + "文件不存在"); + } + } private readonly string[] AllowedExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".xlsx", ".aks" }; /// /// 文件上传--附件 From db3163464801544774bab2cddd284e1f618e8da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Wed, 27 Dec 2023 18:56:43 +0800 Subject: [PATCH 47/66] =?UTF-8?q?=E5=9C=A8=E5=AF=BC=E5=85=A5=E6=97=B6?= =?UTF-8?q?=E8=B5=8B=E5=80=BC=E5=BE=8B=E5=B8=88=E4=BA=8B=E5=8A=A1=E6=89=80?= =?UTF-8?q?=E8=AF=81=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/LawyerArchivesController.cs | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 86fa6c7..f0bd98f 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -1076,8 +1076,6 @@ namespace _24Hour.Controllers.Common } }; /// 1423000000100-律师执业证书,1423000000200-律师事务所证, 1423000000300- 授权委托书, 1423000000400- 法律援助公函,1423000000500-身份证件 ,1423000000600-关系证明材料, 1423000000700- 其他 - - await UploadPhoto(lawyer.identityphoto, "1423000000100"); await UploadPhoto(lawyersvc.departmentPhoto, "1423000000200"); await UploadPhoto(lawyersvc.annex, "1423000000300"); @@ -1085,8 +1083,6 @@ namespace _24Hour.Controllers.Common await UploadPhoto(lawyer.cardIdphoto, "1423000000500"); await UploadPhoto(lawyersvc.relationshipProofPhoto, "1423000000600"); await UploadPhoto(lawyersvc.otherPhoto, "1423000000700"); - - var markinginput = new ApplyMarKingDto() { bhdlbh = registerinfo.bhdlbh, @@ -1104,8 +1100,6 @@ namespace _24Hour.Controllers.Common sxlxdm = "1405187400001", sxlxmc = "申请阅卷", zrrmc = party, - - }; var applymarkingrequest = await ApplyMarKing(markinginput); @@ -1803,15 +1797,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() @@ -1819,7 +1804,6 @@ namespace _24Hour.Controllers.Common .Replace(@"\", @"/")) .ToList() .ConvertToJsonStr(); - if (user == null) { userim.cardIdphoto = cardids; @@ -1867,7 +1851,6 @@ namespace _24Hour.Controllers.Common .ToList() .ConvertToJsonStr(); - var legalAidPhoto = Path.Combine(ziplawyersvcs, lawyersvc.Id, "legalAidPhoto"); var legalAidPhotos = new DirectoryInfo(legalAidPhoto) .GetFiles() @@ -1934,6 +1917,7 @@ namespace _24Hour.Controllers.Common svc.legalAidPhoto = legalAidPhotos; svc.relationshipProofPhoto = relationshipProofPhotos; svc.otherPhoto = otherPhotos; + svc.departmentPhoto = departmentPhotos; svc.IsAssigned = false; svc.IsDeleted = 0; _db.BeginTran(); From b9b22c91231111eceb4d9043a745bceac04ea3d4 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 27 Dec 2023 19:31:25 +0800 Subject: [PATCH 48/66] =?UTF-8?q?=E5=8F=AA=E8=83=BD=E5=88=A0=E9=99=A4temp?= =?UTF-8?q?=E9=87=8C=E9=9D=A2=E7=9A=84=E4=B8=B4=E6=97=B6=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index cd2cac7..16095d7 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2785,7 +2785,7 @@ namespace _24Hour.Controllers.Common if (System.IO.File.Exists(filename)) { filename = filename.Replace(@"\\", @"\"); - var data = System.IO.Path.Combine(Environment.CurrentDirectory, "wwwroot"); + var data = System.IO.Path.Combine(Environment.CurrentDirectory, "wwwroot","temp"); if (filename.Contains(data) == false) { return Result.Error("操作失败" + "不可删除"); From 5ac003b5a33c7afe85907f96a247dd570922f8b6 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 27 Dec 2023 20:41:10 +0800 Subject: [PATCH 49/66] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/CommonController.cs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/24Hour/Controllers/Common/CommonController.cs b/24Hour/Controllers/Common/CommonController.cs index 16095d7..aa24af0 100644 --- a/24Hour/Controllers/Common/CommonController.cs +++ b/24Hour/Controllers/Common/CommonController.cs @@ -2764,12 +2764,15 @@ namespace _24Hour.Controllers.Common } 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(); } + } /// @@ -2781,11 +2784,10 @@ namespace _24Hour.Controllers.Common [Route("RequestDeleteFile")] public Result RequestDeleteFile(string filename) //[FromBody] dynamic Json { - if (System.IO.File.Exists(filename)) { filename = filename.Replace(@"\\", @"\"); - var data = System.IO.Path.Combine(Environment.CurrentDirectory, "wwwroot","temp"); + var data = System.IO.Path.Combine(Environment.CurrentDirectory, "wwwroot", "temp"); if (filename.Contains(data) == false) { return Result.Error("操作失败" + "不可删除"); @@ -2796,9 +2798,9 @@ namespace _24Hour.Controllers.Common { System.IO.File.Delete(filename); } - catch(Exception ex) + catch (Exception ex) { - return Result.Error("操作失败"+ex.Message); + return Result.Error("操作失败" + ex.Message); } return Result.Success("操作成功"); @@ -2919,7 +2921,7 @@ namespace _24Hour.Controllers.Common { var urlpath = s.Split('/'); - var path = Path.Combine(Environment.CurrentDirectory, "wwwroot" , Path.Combine(urlpath)); + var path = Path.Combine(Environment.CurrentDirectory, "wwwroot", Path.Combine(urlpath)); if (System.IO.File.Exists(path)) { return Elight.Utility.Encrypt.DataEncryption.Decryptiones(path); From 30fd529f75c7a8944ae79b54068fc845544d86d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Wed, 27 Dec 2023 20:47:56 +0800 Subject: [PATCH 50/66] =?UTF-8?q?=E5=B0=81=E8=A3=85=E5=8A=A0=E8=BD=BD?= =?UTF-8?q?=E5=9B=BE=E7=89=87=E7=9A=84=E6=96=B9=E6=B3=95=EF=BC=8C=E5=9C=A8?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=95=B0=E6=8D=AE=E5=89=8D=E5=85=88=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E5=8E=9F=E6=9D=A5=E7=9A=84=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/LawyerArchivesController.cs | 85 ++++++++++--------- 1 file changed, 46 insertions(+), 39 deletions(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index f0bd98f..76360b1 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -1782,6 +1782,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() @@ -1818,6 +1837,9 @@ namespace _24Hour.Controllers.Common } else { + deleteOldData(user.cardIdphoto); + deleteOldData(user.identityphoto); + user.cardIdphoto = cardids; user.identityphoto = files; user.unitCode = _userdata.unitCode; @@ -1842,46 +1864,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 departmentPhoto = Path.Combine(ziplawyersvcs, lawyersvc.Id, "departmentPhoto"); - var departmentPhotos = new DirectoryInfo(departmentPhoto) - .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) { @@ -1912,6 +1911,14 @@ 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; From 9815b1300c23f8b6c71ea7befbe1d82eb06e1855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Wed, 27 Dec 2023 20:48:21 +0800 Subject: [PATCH 51/66] =?UTF-8?q?=E7=BC=96=E8=BE=91=E8=AF=81=E4=BB=B6?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E5=9B=BE=E7=89=87=E5=89=8D=E5=85=88=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E5=8E=9F=E6=9C=89=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/SystemControllerController.cs | 41 ++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/24Hour/Controllers/system/SystemControllerController.cs b/24Hour/Controllers/system/SystemControllerController.cs index c0b144c..0c78052 100644 --- a/24Hour/Controllers/system/SystemControllerController.cs +++ b/24Hour/Controllers/system/SystemControllerController.cs @@ -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 => { //头像地址 From 4f5edbbeb927f896e4b8daaf49094a00d366134e Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 27 Dec 2023 22:10:03 +0800 Subject: [PATCH 52/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E8=87=B31.0.3.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/24Hour.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24Hour/24Hour.csproj b/24Hour/24Hour.csproj index f391ff5..364d53d 100644 --- a/24Hour/24Hour.csproj +++ b/24Hour/24Hour.csproj @@ -8,8 +8,8 @@ True e485308c-2f05-470b-b0a4-68f1ec2b3412 Linux - 1.0.3.9 - 1.0.3.9 + 1.0.3.10 + 1.0.3.10 From c86d65312b51bff7ad3ec75ad870510519f5c455 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Fri, 29 Dec 2023 12:39:48 +0800 Subject: [PATCH 53/66] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../logs/Logs/ExceptionLog/20230613/10.log | 12 - .../logs/Logs/ExceptionLog/20230614/16.log | 12 - .../logs/Logs/ExceptionLog/20230614/17.log | 72 - .../logs/Logs/ExceptionLog/20230615/09.log | 24 - .../logs/Logs/ExceptionLog/20230615/18.log | 36 - .../logs/Logs/ExceptionLog/20230615/19.log | 12 - .../logs/Logs/ExceptionLog/20230616/14.log | 36 - .../logs/Logs/ExceptionLog/20230616/15.log | 65 - .../logs/Logs/ExceptionLog/20230619/15.log | 108 -- .../logs/Logs/ExceptionLog/20230619/17.log | 12 - .../logs/Logs/ExceptionLog/20230619/18.log | 46 - .../logs/Logs/ExceptionLog/20230619/20.log | 12 - .../logs/Logs/ExceptionLog/20230620/13.log | 36 - .../logs/Logs/ExceptionLog/20230620/14.log | 12 - .../logs/Logs/ExceptionLog/20230620/15.log | 60 - .../logs/Logs/ExceptionLog/20230620/17.log | 36 - .../logs/Logs/ExceptionLog/20230620/20.log | 12 - .../logs/Logs/ExceptionLog/20230621/11.log | 12 - .../logs/Logs/ExceptionLog/20230621/14.log | 60 - .../logs/Logs/ExceptionLog/20230625/09.log | 228 --- .../logs/Logs/ExceptionLog/20230625/10.log | 696 -------- .../logs/Logs/ExceptionLog/20230625/11.log | 1284 ------------- .../logs/Logs/ExceptionLog/20230625/12.log | 12 - .../logs/Logs/ExceptionLog/20230625/13.log | 228 --- .../logs/Logs/ExceptionLog/20230625/14.log | 1344 -------------- .../logs/Logs/ExceptionLog/20230625/15.log | 1212 ------------- .../logs/Logs/ExceptionLog/20230625/16.log | 1500 ---------------- .../logs/Logs/ExceptionLog/20230625/17.log | 1128 ------------ .../logs/Logs/ExceptionLog/20230625/18.log | 924 ---------- .../logs/Logs/ExceptionLog/20230625/19.log | 420 ----- .../logs/Logs/ExceptionLog/20230625/20.log | 132 -- .../logs/Logs/ExceptionLog/20230626/08.log | 60 - .../logs/Logs/ExceptionLog/20230626/09.log | 1404 --------------- .../logs/Logs/ExceptionLog/20230626/10.log | 1584 ----------------- .../logs/Logs/ExceptionLog/20230626/11.log | 684 ------- .../logs/Logs/ExceptionLog/20230627/18.log | 636 ------- .../logs/Logs/ExceptionLog/20230627/19.log | 228 --- .../logs/Logs/ExceptionLog/20230627/20.log | 72 - .../logs/Logs/ExceptionLog/20230628/10.log | 36 - .../logs/Logs/ExceptionLog/20230628/15.log | 36 - .../logs/Logs/ExceptionLog/20230628/16.log | 180 -- .../logs/Logs/ExceptionLog/20230704/14.log | 1080 ----------- .../logs/Logs/ExceptionLog/20230704/16.log | 1065 ----------- .../logs/Logs/ExceptionLog/20230705/09.log | 570 ------ 44 files changed, 17418 deletions(-) delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230613/10.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230614/16.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230614/17.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/09.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/18.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230615/19.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230616/14.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230616/15.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/15.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/17.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/18.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230619/20.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/13.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/14.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/15.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/17.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230620/20.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230621/11.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230621/14.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/09.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/10.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/11.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/12.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/13.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/14.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/15.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/16.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/17.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/18.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/19.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230625/20.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/08.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/09.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/10.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230626/11.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/18.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/19.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230627/20.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/10.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/15.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230628/16.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230704/14.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230704/16.log delete mode 100644 24Hour/wwwroot/CaseFile/logs/Logs/ExceptionLog/20230705/09.log 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************************************ - From 974d12230cfb5e6d1b13404153d46f5db925debc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Fri, 29 Dec 2023 12:40:08 +0800 Subject: [PATCH 54/66] =?UTF-8?q?=E9=BB=98=E8=AE=A4=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=97=B6=E9=97=B4=E4=B8=BA180=E5=A4=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/TwentySystemProxyClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 5957c93eff7dadc6badc645caec1b00675dd0c70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Tue, 2 Jan 2024 17:03:52 +0800 Subject: [PATCH 55/66] =?UTF-8?q?=E4=BF=AE=E6=94=B9docker=20build=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E4=B8=BA=E5=8C=97=E5=85=B3=E5=8C=BA=E9=83=A8=E7=BD=B2?= =?UTF-8?q?=E5=91=BD=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/build/dockerbuild.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/24Hour/build/dockerbuild.txt b/24Hour/build/dockerbuild.txt index 24983b0..459da0d 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.3.7.tar twentyfoursvc:1.0.3.7 +docker build -t twentyfoursvc:1.0.3.10 . +docker save -o d://twentyfoursvc.1.0.3.10.tar twentyfoursvc:1.0.3.10 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.10\ -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.10 From 6e6896fc5dd00cb1633ce475bf87b20b782e8c02 Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 2 Jan 2024 17:10:24 +0800 Subject: [PATCH 56/66] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=85=AC=E5=8F=B8?= =?UTF-8?q?=E5=8F=91=E5=B8=83=E6=9C=8D=E5=8A=A1=E7=9A=84docker=E5=91=BD?= =?UTF-8?q?=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/build/dockerbuild.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/24Hour/build/dockerbuild.txt b/24Hour/build/dockerbuild.txt index 24983b0..35b66ad 100644 --- a/24Hour/build/dockerbuild.txt +++ b/24Hour/build/dockerbuild.txt @@ -32,28 +32,29 @@ 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 twentyfoursvc_1.0.3.7_private \ +docker run --name twentyfoursvc_1.0.3.10_private \ -p 8098:8098 \ -v /home/24hour/private/config/appsettings.json:/app/appsettings.json \ -v /home/24hour/private/config/log4net.config:/app/log4net.config \ -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.3.7 +--restart=always -d twentyfoursvc:1.0.3.10 外网运行 -docker run --name twentyfoursvc_1.0.3.7_network \ +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.7 +--restart=always -d twentyfoursvc:1.0.3.10 From 868ca687ffa42b62d93175e2040206b1197968fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=BD=87=E9=98=B3?= Date: Tue, 9 Jan 2024 09:47:15 +0800 Subject: [PATCH 57/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A02.0=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E5=80=BC=E5=88=B0message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/LawyerArchivesController.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 76360b1..0ec08c9 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -1126,12 +1126,15 @@ namespace _24Hour.Controllers.Common { result.IsSucceed = true; result.Message = "数据上传案管系统成功"; + result.result = Arrangerequest.Message; return result; } else { + result.IsSucceed = false; result.Message = "数据上传案管系统失败,申请阅卷添加失败"; + result.result = Arrangerequest.Message; return result; } } @@ -1139,6 +1142,7 @@ namespace _24Hour.Controllers.Common { result.IsSucceed = false; result.Message = "数据上传案管系统失败,申请添加失败"; + result.result = applymarkingrequest.Message; return result; } } @@ -1146,6 +1150,7 @@ namespace _24Hour.Controllers.Common { result.IsSucceed = false; result.Message = "数据上传案管系统失败,登记添加失败"; + result.result = registerinforequest.Message; return result; } } @@ -1601,7 +1606,7 @@ namespace _24Hour.Controllers.Common new { name = "其他", - value = allCount-excount, + value = allCount - excount, } }; registerCount.AddRange(list); From 79032c117025b13118ab6b9fe3add5e928167a4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Tue, 9 Jan 2024 09:49:36 +0800 Subject: [PATCH 58/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E5=86=85=E7=BD=91?= =?UTF-8?q?=E5=8F=91=E8=A1=8C=E7=89=88=E6=9C=AC10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/build/dockerbuild.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/24Hour/build/dockerbuild.txt b/24Hour/build/dockerbuild.txt index 459da0d..e7e2acc 100644 --- a/24Hour/build/dockerbuild.txt +++ b/24Hour/build/dockerbuild.txt @@ -36,14 +36,16 @@ docker load -i twentyfoursvc1019.tar 内网运行 -docker run --name twentyfoursvc_1.0.3.7_private \ +docker run --name twentyfoursvc_1.0.3.10_private \ -p 8098:8098 \ -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.3.7 +--restart=always -d twentyfoursvc:1.0.3.10 外网运行 docker run --name twentyfoursvc_1.0.3.7_network \ From fdec17ff0bc122fa5310970bc9f7446bf41e3af7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=BD=87=E9=98=B3?= Date: Tue, 9 Jan 2024 11:43:59 +0800 Subject: [PATCH 59/66] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E8=BE=93=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/LawyerArchivesController.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 0ec08c9..ca7b7f0 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -20,6 +20,7 @@ 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; @@ -1041,6 +1042,7 @@ namespace _24Hour.Controllers.Common Lxdh = "", Lxdz = "" }); + logger.LogInformation(registerinforequest.ConvertToJsonStr()); if (registerinforequest.IsSucceed == true) { var registerinfo = registerinforequest.result; @@ -1061,6 +1063,7 @@ namespace _24Hour.Controllers.Common 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, @@ -1103,6 +1106,7 @@ namespace _24Hour.Controllers.Common }; var applymarkingrequest = await ApplyMarKing(markinginput); + logger.LogInformation(applymarkingrequest.ConvertToJsonStr()); if (applymarkingrequest.IsSucceed == true) { var applymarkinginfo = applymarkingrequest.result; @@ -1122,6 +1126,7 @@ namespace _24Hour.Controllers.Common yjjzsj = permissibleStartTime, yjkssj = permissibleEndTime, }); + logger.LogInformation(Arrangerequest.ConvertToJsonStr()); if (Arrangerequest.IsSucceed == true) { result.IsSucceed = true; From 19cc9c2d2ea99f64dddaf7ee68d3601ed6895c1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=BD=87=E9=98=B3?= Date: Tue, 9 Jan 2024 11:44:26 +0800 Subject: [PATCH 60/66] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=85=AC=E5=8F=B8?= =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E5=8F=91=E5=B8=83=E7=89=88=E6=9C=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/build/dockerbuild.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24Hour/build/dockerbuild.txt b/24Hour/build/dockerbuild.txt index 9d38670..151964d 100644 --- a/24Hour/build/dockerbuild.txt +++ b/24Hour/build/dockerbuild.txt @@ -12,7 +12,7 @@ docker network create -d bridge twentytotwneyfour for 24hourserver docker run \ ---name twentyfoursvc1.0.3.10\ +--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.3.10 +-d twentyfoursvc:1.0.3.11 From 1e3ee7d5a93e768af72eb01ad010ba9c29984818 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Tue, 9 Jan 2024 11:45:28 +0800 Subject: [PATCH 61/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E7=9A=84=E7=89=88=E6=9C=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/build/dockerbuild.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24Hour/build/dockerbuild.txt b/24Hour/build/dockerbuild.txt index b42b7a0..f47b003 100644 --- a/24Hour/build/dockerbuild.txt +++ b/24Hour/build/dockerbuild.txt @@ -1,6 +1,6 @@ create images -docker build -t twentyfoursvc:1.0.3.10 . -docker save -o d://twentyfoursvc.1.0.3.10.tar twentyfoursvc:1.0.3.10 +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 From 7db888f282d933796c73c1995a4e02a65490eca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=BD=87=E9=98=B3?= Date: Wed, 10 Jan 2024 09:53:22 +0800 Subject: [PATCH 62/66] =?UTF-8?q?=E5=9C=A8=E6=96=B0=E5=A2=9E=E5=BE=8B?= =?UTF-8?q?=E5=B8=88=E6=97=B6=E6=B7=BB=E5=8A=A0=E5=BE=8B=E5=B8=88=E5=A7=93?= =?UTF-8?q?=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/LawyerArchivesController.cs | 3 ++- Dto/RegisterDto.cs | 4 ++++ WebApplication1/Controllers/TwentySystemController.cs | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index ca7b7f0..c0bb316 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -1040,7 +1040,8 @@ namespace _24Hour.Controllers.Common }, Zbls = "", Lxdh = "", - Lxdz = "" + Lxdz = "", + LawyerName=lawyer.name }); logger.LogInformation(registerinforequest.ConvertToJsonStr()); if (registerinforequest.IsSucceed == true) 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/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; From 7963a73853cd4792aeaebb9a78911c36c87ddd40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=BD=87=E9=98=B3?= Date: Wed, 10 Jan 2024 09:56:24 +0800 Subject: [PATCH 63/66] =?UTF-8?q?=E5=8D=87=E7=BA=A724hour=20=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E7=89=88=E6=9C=AC=E5=8F=B7=E8=87=B31.0.3.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/24Hour.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24Hour/24Hour.csproj b/24Hour/24Hour.csproj index 364d53d..118b0c1 100644 --- a/24Hour/24Hour.csproj +++ b/24Hour/24Hour.csproj @@ -8,8 +8,8 @@ True e485308c-2f05-470b-b0a4-68f1ec2b3412 Linux - 1.0.3.10 - 1.0.3.10 + 1.0.3.11 + 1.0.3.11 From 83625193bd208d73f29014cd1aa596827410e6a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=BD=87=E9=98=B3?= Date: Wed, 10 Jan 2024 09:57:07 +0800 Subject: [PATCH 64/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E4=BB=A3=E7=90=86?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E7=89=88=E6=9C=AC=E5=8F=B7=E8=87=B31.0.1.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebApplication1/WebApplication1.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 70785960e3af9bcd961e29b903cdaf8f29a1b064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Wed, 10 Jan 2024 10:06:31 +0800 Subject: [PATCH 65/66] =?UTF-8?q?=E5=8F=96=E6=B6=88=E5=BE=8B=E5=B8=88?= =?UTF-8?q?=E5=BA=93=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/LawyerArchivesController.cs | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index ca7b7f0..40ef844 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -957,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) From fdac0f8b70c5fe8019687c1ec4d689fefa5b0cc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Wed, 10 Jan 2024 10:07:12 +0800 Subject: [PATCH 66/66] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E8=87=B31.0.3.14?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/24Hour.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/24Hour/24Hour.csproj b/24Hour/24Hour.csproj index 364d53d..e88f844 100644 --- a/24Hour/24Hour.csproj +++ b/24Hour/24Hour.csproj @@ -8,8 +8,8 @@ True e485308c-2f05-470b-b0a4-68f1ec2b3412 Linux - 1.0.3.10 - 1.0.3.10 + 1.0.3.14 + 1.0.3.14