添加项目文件。
This commit is contained in:
26
system/Tnb.Systems.Interfaces/System/IDbLinkService.cs
Normal file
26
system/Tnb.Systems.Interfaces/System/IDbLinkService.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using JNPF.Systems.Entitys.Dto.DbLink;
|
||||
using JNPF.Systems.Entitys.System;
|
||||
|
||||
namespace JNPF.Systems.Interfaces.System;
|
||||
|
||||
/// <summary>
|
||||
/// 数据连接
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 日 期:2021-06-01.
|
||||
/// </summary>
|
||||
public interface IDbLinkService
|
||||
{
|
||||
/// <summary>
|
||||
/// 列表.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<List<DbLinkListOutput>> GetList();
|
||||
|
||||
/// <summary>
|
||||
/// 信息.
|
||||
/// </summary>
|
||||
/// <param name="id">主键值.</param>
|
||||
/// <returns></returns>
|
||||
Task<DbLinkEntity> GetInfo(string id);
|
||||
}
|
||||
Reference in New Issue
Block a user