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