2025-09-23 14:41:35 +08:00
|
|
|
|
using APT.BaseData.Domain.Entities.FM;
|
|
|
|
|
|
using APT.Infrastructure.Api;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace APT.BaseData.Domain.IServices.OP
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IOPTenantDBConnService : ICommonService
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取 除 ORG_IDBeside 之外对应的数据库链接字典 ORG_ID DB_CONN
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="ORG_IDBeside"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
Dictionary<Guid, string> GetConnDictionary(Guid? ORG_IDBeside);
|
2025-10-23 11:03:02 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取 ORG_ID的数据库链接
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="ORG_ID">过滤值</param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
string GetConnByORGID(Guid ORG_ID);
|
2025-09-23 14:41:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|