diff --git a/Ewide.NbzsZheliban/Tools/HttpHelper.cs b/Ewide.NbzsZheliban/Tools/HttpHelper.cs
new file mode 100644
index 0000000..5e56179
--- /dev/null
+++ b/Ewide.NbzsZheliban/Tools/HttpHelper.cs
@@ -0,0 +1,55 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Net;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Ewide.NbzsZheliban.Tools
+{
+ public class HttpHelper
+ {
+ ///
+ /// 请求网页地址
+ ///
+ /// 网页地址
+ /// 参数
+ ///
+ public static string CallUrl(string url, string param)
+ {
+ //创建一个HTTP请求
+ HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
+ //Post请求方式
+ request.Method = "POST";
+ //内容类型
+ //request.ContentType = "application/x-www-form-urlencoded";
+ request.ContentType = "application/json;charset=utf-8";
+ //byte[] bs = Encoding.ASCII.GetBytes(param); //参数转化为ascii码
+ byte[] bs = Encoding.UTF8.GetBytes(param);
+ request.ContentLength = bs.Length;
+ using (Stream reqStream = request.GetRequestStream())
+ {
+ reqStream.Write(bs, 0, bs.Length);
+ }
+
+ String strValue = "";//strValue为http响应所返回的字符流
+ HttpWebResponse response;
+ try
+ {
+ //获得响应流
+ response = (HttpWebResponse)request.GetResponse();
+ }
+ catch (WebException ex)
+ {
+ response = ex.Response as HttpWebResponse;
+ }
+
+ Stream s = response.GetResponseStream();
+ StreamReader sr = new StreamReader(s);
+
+ strValue = sr.ReadToEnd();
+ return strValue;
+ }
+ }
+}
diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.dll b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.dll
index 31db247..b21ce9c 100644
Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.dll and b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.dll differ
diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.pdb b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.pdb
index 44c9d82..07016b6 100644
Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.pdb and b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.pdb differ
diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.dll
index 0ca51b1..1c53773 100644
Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.dll differ
diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.pdb b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.pdb
index 8fc657d..f64fbb1 100644
Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.pdb and b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.pdb differ
diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.dll b/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.dll
index bd0df76..87febec 100644
Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.dll and b/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.dll differ
diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.pdb b/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.pdb
index 5a07858..1e0521d 100644
Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.pdb and b/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.pdb differ
diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/ref/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/bin/Release/net5.0/ref/Ewide.NbzsZheliban.dll
index 58ea04d..e5e1f48 100644
Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/ref/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/bin/Release/net5.0/ref/Ewide.NbzsZheliban.dll differ
diff --git a/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache b/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache
index f5e894a..e9f260f 100644
Binary files a/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache and b/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache differ
diff --git a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache
index 10e65b3..f7bad17 100644
Binary files a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache and b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache differ
diff --git a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.CoreCompileInputs.cache b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.CoreCompileInputs.cache
index 1714b59..77d25f4 100644
--- a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.CoreCompileInputs.cache
+++ b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-919fb30d2a97726031adcb9ca38853405bac0fd6
+4bde41c8041738fd99537bb8a528c2972537dead
diff --git a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.dll
index 0ca51b1..1c53773 100644
Binary files a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.dll differ
diff --git a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.pdb b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.pdb
index 8fc657d..f64fbb1 100644
Binary files a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.pdb and b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.pdb differ
diff --git a/Ewide.NbzsZheliban/obj/Release/net5.0/ref/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/obj/Release/net5.0/ref/Ewide.NbzsZheliban.dll
index 58ea04d..e5e1f48 100644
Binary files a/Ewide.NbzsZheliban/obj/Release/net5.0/ref/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/obj/Release/net5.0/ref/Ewide.NbzsZheliban.dll differ
diff --git a/FrontCode2/test.txt b/FrontCode2/test.txt
new file mode 100644
index 0000000..30d74d2
--- /dev/null
+++ b/FrontCode2/test.txt
@@ -0,0 +1 @@
+test
\ No newline at end of file
diff --git a/framework b/framework
index 6876c8f..1e2ddef 160000
--- a/framework
+++ b/framework
@@ -1 +1 @@
-Subproject commit 6876c8f4187ff70a459de138a9cde3574267bad6
+Subproject commit 1e2ddefc543106f5dbfd57e3736463ca4a7afec1