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