入库记录导入导出

库存导入导出
This commit is contained in:
2026-01-09 10:53:37 +08:00
parent fdcb5b5200
commit 29ced372cb
9 changed files with 719 additions and 11 deletions

View File

@@ -1,5 +1,6 @@
using DOAN.Model.BZFM.Dto;
using DOAN.Model.BZFM;
using DOAN.Model.BZFM.Dto;
using Microsoft.AspNetCore.Http;
namespace DOAN.Service.BZFM.IBZFMService
{
@@ -16,6 +17,13 @@ namespace DOAN.Service.BZFM.IBZFMService
MmRecordInbound AddMmRecordInbound(MmRecordInbound parm);
int UpdateMmRecordInbound(MmRecordInbound parm);
/// <summary>
/// 导入
/// </summary>
/// <param name="recordinbound"></param>
/// <returns></returns>
ImportResultDto ImportRecordinbound(IFormFile formFile, string username);
public PagedInfo<MmRecordinboundExcelDto> SelectRecordinboundList(MmRecordInboundQueryDto recordinbound, PagerInfo pager);
}
}