using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WMS.Util; namespace WMS.Info { public class StockOutTaskDto { public string OrderNo { get; set; } public EStockOutOrderType OrderType { get; set; } public string OrderTypeDes => OrderType.ToStringByDesc(); public EOrderState Status { get; set; } public string StatusDes => Status.ToStringByDesc(); public string MatNo { get; set; } public string MatName { get; set; } public string PlanQty { get; set; } public DateTime AddTime { get; set; } } }