feat(MES): 实现物料看板功能并重构相关代码
添加物料看板数据传输对象和汇总对象 实现物料看板服务接口及控制器 删除旧版物料相关代码 优化数据查询性能,使用并行处理
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user