feat(MES): 实现物料看板功能并重构相关代码

添加物料看板数据传输对象和汇总对象
实现物料看板服务接口及控制器
删除旧版物料相关代码
优化数据查询性能,使用并行处理
This commit is contained in:
2026-02-05 13:52:59 +08:00
parent 846a913a66
commit b3a62efbd2
8 changed files with 435 additions and 18 deletions

View File

@@ -0,0 +1,23 @@
namespace DOAN.Model.MES.SmartScreen.Material
{
/// <summary>
/// 物料看板汇总数据传输对象
/// </summary>
public class MaterialSummaryDto
{
/// <summary>
/// 本月领料数量
/// </summary>
public decimal RawMaterialOutMonth { get; set; }
/// <summary>
/// 本月成品入库数量
/// </summary>
public decimal ProductInMonth { get; set; }
/// <summary>
/// 本月出货数量
/// </summary>
public decimal ProductOutMonth { get; set; }
}
}