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() + { + } + + + } +}