From e4fbbdcccb98ce481d9a198e0dd035c4955189cd Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Tue, 18 Jun 2024 17:43:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8C=97=E4=BA=AC=E6=B0=91=E4=BC=97=E5=AE=89?= =?UTF-8?q?=E5=BA=B7=E5=81=A5=E5=BA=B7=E4=BD=93=E6=A3=80=E6=9C=BA=E6=9E=84?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=AF=BC=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BeiJingMZAKExportDataAppService.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/Shentun.Peis.Application/BeiJingMZAKExportDatas/BeiJingMZAKExportDataAppService.cs diff --git a/src/Shentun.Peis.Application/BeiJingMZAKExportDatas/BeiJingMZAKExportDataAppService.cs b/src/Shentun.Peis.Application/BeiJingMZAKExportDatas/BeiJingMZAKExportDataAppService.cs new file mode 100644 index 0000000..e1fc869 --- /dev/null +++ b/src/Shentun.Peis.Application/BeiJingMZAKExportDatas/BeiJingMZAKExportDataAppService.cs @@ -0,0 +1,21 @@ +using Microsoft.AspNetCore.Authorization; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Volo.Abp.Application.Services; + +namespace Shentun.Peis.BeiJingMZAKExportDatas +{ + /// + /// 北京民众安康健康体检机构 老系统数据导入 + /// + [Authorize] + public class BeiJingMZAKExportDataAppService : ApplicationService + { + public BeiJingMZAKExportDataAppService() + { + } + } +}