24 lines
594 B
C#
24 lines
594 B
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|