Files
2024-04-23 10:16:16 +08:00

26 lines
619 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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);
}