This commit is contained in:
liqionghai
2025-11-18 17:43:12 +08:00
parent 3f9e939d54
commit d758497f93
189 changed files with 16669 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using Gatedge.K3Cloud.Utils;
using Gatedge.ScanCode.Models.Vo.BaseData;
namespace Gatedge.ScanCode.Services.IServices
{
/// <summary>
/// 金蝶文件服务类
/// </summary>
public interface IK3FileService
{
/// <summary>
/// 获取文件路径
/// </summary>
/// <param name="file"></param>
/// <returns></returns>
public string GetFilePath(AttachmentFile file);
/// <summary>
/// 配置金蝶云SDK
/// </summary>
public void SetK3Util(K3CloudApiUtils utils);
}
}