From f6842d13a8d54555f2a49566f60a640cc2268b02 Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Wed, 17 Apr 2024 18:19:07 +0800 Subject: [PATCH] 22 --- .../BaseDataHandleAppService.cs | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/Shentun.Peis.Application/DataMigrations/BaseDataHandleAppService.cs diff --git a/src/Shentun.Peis.Application/DataMigrations/BaseDataHandleAppService.cs b/src/Shentun.Peis.Application/DataMigrations/BaseDataHandleAppService.cs new file mode 100644 index 0000000..e40b368 --- /dev/null +++ b/src/Shentun.Peis.Application/DataMigrations/BaseDataHandleAppService.cs @@ -0,0 +1,24 @@ +using Microsoft.AspNetCore.Authorization; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using TencentCloud.Dlc.V20210125.Models; +using Volo.Abp.Application.Services; + +namespace Shentun.Peis.DataMigrations +{ + /// + /// 基础数据处理 + /// + [Authorize] + public class BaseDataHandleAppService : ApplicationService + { + public BaseDataHandleAppService() + { + } + + + } +}