namespace DOAN.Model.MES.SmartScreen.Material { /// /// 物料看板汇总数据传输对象 /// public class MaterialSummaryDto { /// /// 本月领料数量 /// public decimal RawMaterialOutMonth { get; set; } /// /// 本月成品入库数量 /// public decimal ProductInMonth { get; set; } /// /// 本月出货数量 /// public decimal ProductOutMonth { get; set; } } }