IndexAlertSumDto.cs 476 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShwasherSys.Common.Dto
  7. {
  8. public class IndexAlertSumDto
  9. {
  10. /// <summary>
  11. /// 1:订单 2:排产单 3:包装
  12. /// </summary>
  13. public string SumType { get; set; }
  14. public decimal Quantity { get; set; }
  15. public string SumName { get; set; }
  16. public string TipName { get; set; }
  17. }
  18. }