尝试整合分类代码文件

This commit is contained in:
fengjiayi
2024-08-06 15:41:14 +08:00
parent 276e3b65e9
commit f15baf0d9b
45 changed files with 886 additions and 484 deletions

View File

@@ -1,19 +0,0 @@
namespace Serein.Web
{
public class ControllerBase
{
public string Url { get; set; }
public string BobyData { get; set; }
public string GetLog(Exception ex)
{
return "Url : " + Url + Environment.NewLine +
"Ex : " + ex.Message + Environment.NewLine +
"Data : " + BobyData + Environment.NewLine;
}
}
}