23 lines
575 B
C#
23 lines
575 B
C#
|
|
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);
|
|||
|
|
}
|
|||
|
|
}
|