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,19 @@
using DOAN.Model.BZFM;
using DOAN.Model.MES.order;
using DOAN.Model.MES.SmartScreen.Material;
using DOAN.Model.MES.SmartScreen.Order.Dto;
namespace DOAN.Service.MES.SmartScreen.Order.IService
{
/// <summary>
/// 采购订单service接口
/// </summary>
public interface IMaterialSmartScreenService : IBaseService<MmMaterial>
{
/// <summary>
/// 获取物料大屏数据
/// </summary>
/// <returns></returns>
MaterialScreenDto GetMaterialScreenData();
}
}