feat(MES): 实现物料看板功能并重构相关代码
添加物料看板数据传输对象和汇总对象 实现物料看板服务接口及控制器 删除旧版物料相关代码 优化数据查询性能,使用并行处理
This commit is contained in:
25
DOAN.Model/MES/SmartScreen/Material/MaterialScreenDto.cs
Normal file
25
DOAN.Model/MES/SmartScreen/Material/MaterialScreenDto.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
|
||||
namespace DOAN.Model.MES.SmartScreen.Material
|
||||
{
|
||||
/// <summary>
|
||||
/// 物料看板数据传输对象
|
||||
/// </summary>
|
||||
public class MaterialScreenDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 汇总数据
|
||||
/// </summary>
|
||||
public MaterialSummaryDto Summary { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物料明细列表
|
||||
/// </summary>
|
||||
public List<MaterialDetailDto> Materials { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最后更新时间
|
||||
/// </summary>
|
||||
public string LastUpdate { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user