From 770c681572301c938d7b9adcc60d9aad9d1dd604 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期二, 19 九月 2023 17:37:03 +0800
Subject: [PATCH] 1.新增基本资料功能接口(erp车间/部门、erp仓库、erp用户信息) 2.报工接口添加字段入库条码 3.增加末道工序报工后提交入库接口(对接erp) 4.增加生成系统条码接口(自定义)
---
VueWebApi/App_Start/SwaggerConfig.cs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/VueWebApi/App_Start/SwaggerConfig.cs b/VueWebApi/App_Start/SwaggerConfig.cs
index d86f7ff..e1d332f 100644
--- a/VueWebApi/App_Start/SwaggerConfig.cs
+++ b/VueWebApi/App_Start/SwaggerConfig.cs
@@ -24,7 +24,7 @@
GlobalConfiguration.Configuration
.EnableSwagger(c =>
{
- c.SingleApiVersion("v1", "新凯迪MES平台在线接口文档");
+ c.SingleApiVersion("v1", "新凯迪MES平台在线接口API");
//c.IncludeXmlComments(string.Format("{0}/bin/VueWebApi.XML", System.AppDomain.CurrentDomain.BaseDirectory));
//让swagger根据xml文档来解析
c.IncludeXmlComments(GetXmlCommentsPath(thisAssembly.GetName().Name));
@@ -43,7 +43,7 @@
})
.EnableSwaggerUi(c =>
{
- c.DocumentTitle("新凯迪MES平台在线接口文档");
+ c.DocumentTitle("新凯迪MES平台在线接口API");
c.InjectJavaScript(thisAssembly, "VueWebApi.Scripts.swagger_lang.js");//汉化js
});
}
--
Gitblit v1.9.3