出入库功能模块

This commit is contained in:
2026-01-06 17:26:47 +08:00
parent 96f414de66
commit 8a055d1704
6 changed files with 134 additions and 20 deletions

View File

@@ -0,0 +1,21 @@
namespace DOAN.Model.BZFM.Dto
{
public class ImportErrorDto
{
public string MaterialCode { get; set; }
public string Message { get; set; }
}
public class ImportResultDto
{
public string Message { get; set; }
public int Inserted { get; set; }
public int Updated { get; set; }
public int ErrorCount { get; set; }
public int IgnoredCount { get; set; }
public int Deleted { get; set; }
public int Total { get; set; }
public List<ImportErrorDto> Errors { get; set; } = new List<ImportErrorDto>();
public List<ImportErrorDto> Ignored { get; set; } = new List<ImportErrorDto>();
}
}

View File

@@ -17,6 +17,8 @@ namespace DOAN.Model.BZFM.Dto
public string Type { get; set; }
public string Status { get; set; }
public DateTime? CreatedTime { get; set; }
public int Id { get; set; }
}
/// <summary>