using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShwasherSys.Common.Dto { public class IndexAlertSumDto { /// /// 1:订单 2:排产单 3:包装 /// public string SumType { get; set; } public decimal Quantity { get; set; } public string SumName { get; set; } public string TipName { get; set; } } }