添加项目文件。
This commit is contained in:
25
app/Tnb.Apps.Interfaces/IAppDataService.cs
Normal file
25
app/Tnb.Apps.Interfaces/IAppDataService.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using JNPF.Systems.Entitys.System;
|
||||
|
||||
namespace JNPF.Apps.Interfaces;
|
||||
|
||||
/// <summary>
|
||||
/// App常用数据
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 日 期:2021-06-01 .
|
||||
/// </summary>
|
||||
public interface IAppDataService
|
||||
{
|
||||
/// <summary>
|
||||
/// 菜单列表.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<List<ModuleEntity>> GetAppMenuList(string keyword);
|
||||
|
||||
/// <summary>
|
||||
/// 删除.
|
||||
/// </summary>
|
||||
/// <param name="objectId"></param>
|
||||
/// <returns></returns>
|
||||
Task Delete(string objectId);
|
||||
}
|
||||
16
app/Tnb.Apps.Interfaces/Tnb.Apps.Interfaces.csproj
Normal file
16
app/Tnb.Apps.Interfaces/Tnb.Apps.Interfaces.csproj
Normal file
@@ -0,0 +1,16 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Import Project="$(SolutionDir)\common.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<GenerateDocumentationFile>False</GenerateDocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\system\Tnb.Systems.Entitys\Tnb.Systems.Entitys.csproj" />
|
||||
<ProjectReference Include="..\Tnb.Apps.Entitys\Tnb.Apps.Entitys.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user