15 lines
368 B
C#
15 lines
368 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Tnb.EquipMgr.Entities.Dto;
|
|
|
|
namespace Tnb.EquipMgr.Interfaces
|
|
{
|
|
public interface IEqpEquipFileService
|
|
{
|
|
/// <summary>
|
|
/// 上传附件
|
|
/// </summary>
|
|
/// <param name="file"></param>
|
|
/// <returns></returns>
|
|
public Task<string> Upload(string equip_id,IFormFile file);
|
|
}
|
|
} |