chore: 初始化北汽福田MES管理站点

This commit is contained in:
yexingqiang
2026-05-29 13:44:19 +08:00
commit 926c4caf48
161 changed files with 116578 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<%@ WebHandler Language="C#" Class="MESCommonBase10" %>
using System.Web;
public class MESCommonBase10 : IHttpHandler
{
public bool IsReusable
{
get
{
return false;
}
}
public void ProcessRequest(HttpContext context)
{
string connType = "10";
//ProcessRequestHttpContext.ProcessRequestServer.ProcessRequestHttpContext(connType, context);
}
}