修改了background代码!!!!import 修改了库存日志数据库,前端修改,添加库存日志导出功能

This commit is contained in:
2025-01-20 15:55:34 +08:00
parent f781c59473
commit 8bc94c1257
11 changed files with 226 additions and 183 deletions

View File

@@ -7,7 +7,7 @@ namespace DOAN.Model.PBL.Dto
public class InventorylogQueryDto : PagerInfo
{
public string RackCode { get; set; }
public string Partnumber { get; set; }
public int? Operation { get; set; }
}
@@ -20,6 +20,7 @@ namespace DOAN.Model.PBL.Dto
public string Id { get; set; }
public string RackCode { get; set; }
public string Partnumber { get; set; }
public int? Operation { get; set; }
@@ -36,4 +37,13 @@ namespace DOAN.Model.PBL.Dto
}
/// <summary>
/// 库存日志查询对象
/// </summary>
public class InventorylogExportDto
{
public string StartTime { get; set; }
public string EndTime { get; set; }
}
}

View File

@@ -31,7 +31,6 @@ public class StoragelocationDto
public int? PackageNum { get; set; }
/// <summary>
/// 箱子数
/// </summary>
@@ -44,4 +43,16 @@ public class StoragelocationDto
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}
/// <summary>
/// 料架表零件号聚合结果
/// </summary>
public class StoragelocationPartNumberGroupDto
{
public string RackCode { get; set; }
public string Partnumber { get; set; }
public string MirrorshellName { get; set; }
public string Productname { get; set; }
public int PackageNum { get; set; } = 0;
}